Can we put subroutines within loops?

q]     Can we put subroutines within loops?- i mean not the PERFORM Statement  but the FORMENDFORM statement

Hi
If your question means .. calling Performs within Loops ?
Then its possible..
LOOP.
PERFORM P1. ( THIS IS OK )
ENDLOOP.
But this is not correct..
LOOP.
FORM P1.
ENDFORM.
ENDLOOP.
Thanks
Hope it Helps.
Praveen

Similar Messages

  • Can I put Read inside loop?

    Hi Folks
    Can I put Read inside loop?
    Performance wise is it acceptable?
    Regards,
    Sreeram

    Hi
    there is no problem to put READ statement inside the LOOP
    its a better way to put
    to avoid SELECT in a LOOP
    see this example
    i had used that in my program
    in the performance point of view it is a good method
    LOOP AT IT_SOBID INTO WA_SOBID." where otype eq s_otype and objid eq s_objid.
        READ TABLE IT_HRP1026 WITH KEY OBJID = WA_SOBID-SOBID OTYPE = WA_SOBID-SCLAS INTO WA_HRP1026.
        IF SY-SUBRC EQ 0.
          READ TABLE IT_HRP1000 WITH KEY OBJID = WA_SOBID-SOBID INTO WA_HRP1000.
          WA_OUTPUT-OBJID = WA_HRP1026-OBJID.
          WA_OUTPUT-BEGDA = WA_SOBID-BEGDA.
          WA_OUTPUT-ENDDA = WA_SOBID-ENDDA.
          WA_OUTPUT-AEDTM = WA_HRP1026-AEDTM.
          WA_OUTPUT-UNAME = WA_HRP1026-UNAME.
          WA_OUTPUT-STEXT = WA_HRP1000-STEXT.
          READ TABLE IT_REASON WITH KEY CANCR = WA_HRP1026-CANCR INTO WA_REASON.
          WA_OUTPUT-CANCRT = WA_REASON-CANCRT.
          CLEAR WA_REASON-CANCRT.
          READ TABLE IT_LOCATION1 WITH KEY OBJID = WA_HRP1026-OBJID INTO WA_LOCATION1..
          READ TABLE IT_LSTEXT WITH KEY OBJID = WA_LOCATION1-SOBID OTYPE = 'F' INTO WA_LSTEXT.
                 WA_OUTPUT-LSTEXT = WA_LSTEXT-LSTEXT.
                 CLEAR WA_LSTEXT-LSTEXT.
          APPEND WA_OUTPUT TO IT_OUTPUT.
          CLEAR WA_OUTPUT.
          CLEAR WA_OUTPUT-CANCRT.
        ENDIF.
      ENDLOOP.
    <b>Reward if usefull</b>

  • Can I put attachment within an email instead of at the end of the message in mail?

    Can i put an attachemnt within an email message instead of at the end of the message?

    Hello:
    I do nbot know of a way to do that.  I suppose you could try cut/pasting and see if that will accomplish what you wish.
    Barry

  • Can't put video within template,

    Hi,
    I am using Dreamweaver CS3. Is there a way to insert a flash
    video within a page linked to a template? I always get the error
    "making this change would require changing code that is locked by a
    template or a translator". I tried unlinking, inserting the video,
    then relinking but I get two regions that are not associated with
    the template and so ruin the layout once saved. I need all pages to
    be linked to the template as the navigational links are constantly
    changing/updating - these need to be consistent with every page.
    What can I do?!
    THanks,
    Steve

    When you insert Flash video with Flash detection and
    prompting, DW wants to
    put this into the body tag -
    onLoad="MM_CheckFlashVersion('7,0,0,0','Content on this page
    requires a
    newer version of Adobe Flash Player. Do you want to download
    it now?');"
    e.g.,
    <body onLoad="MM_CheckFlashVersion('7,0,0,0','Content on
    this page requires
    a newer version of Adobe Flash Player. Do you want to
    download it now?');">
    Let's assume that you have a child page with the video
    already inserted
    WITHOUT Flash detection.
    What you would need to do would be to create a DUMMY page,
    (FILE | New >
    Basic HTML), and insert the video on that page, then copy and
    paste from
    that page into your template child page.
    First, copy and paste the Flash detection script -
    change this -
    </head>
    to this -
    <script type="text/javascript">
    function MM_CheckFlashVersion(reqVerStr,msg){
    with(navigator){
    var isIE = (appVersion.indexOf("MSIE") != -1 &&
    userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){
    var flashVer = -1;
    if (plugins && plugins.length > 0){
    var desc = plugins["Shockwave Flash"] ? plugins["Shockwave
    Flash"].description : "";
    desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave
    Flash
    2.0"].description : desc;
    if (desc == "") flashVer = -1;
    else{
    var descArr = desc.split(" ");
    var tempArrMajor = descArr[2].split(".");
    var verMajor = tempArrMajor[0];
    var tempArrMinor = (descArr[3] != "") ?
    descArr[3].split("r") :
    descArr[4].split("r");
    var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] :
    0;
    flashVer = parseFloat(verMajor + "." + verMinor);
    // WebTV has Flash Player 4 or lower -- too low for video
    else if (userAgent.toLowerCase().indexOf("webtv") != -1)
    flashVer =
    4.0;
    var verArr = reqVerStr.split(",");
    var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
    if (flashVer < reqVer){
    if (confirm(msg))
    window.location =
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
    </script>
    </head>
    Then, assuming you have no other events in the child page's
    body tag, change
    this -
    </head>
    to this -
    <script type="text/javascript">
    <!--
    window.onload(MM_CheckFlashVersion('7,0,0,0','Content on this
    page requires
    a newer version of Adobe Flash Player. Do you want to
    download it now?');
    -->
    </script>
    </head>
    and you should be all set.
    (by the way, my example is set to check for version 7)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "JimboSun" <[email protected]> wrote in
    message
    news:[email protected]...
    > How, how? How do we have the Check for Flash in a
    Template Child Page?

  • How can I put folders within folders in alphabetical order in MAIL?

    In Mail I have several folders covering my major areas of work.  in each of these folders I may have 10 to 50 subfolders,  which represent my clients.
    All I ant to do is put these sub-folders in alphabetical order so I can locate them rapidly.  Can I?

    THANKS LANNY.  THIS MEANS THAT THERE IS NO AUTOMATIC ALPHEBETICAL
    Thanks, Lanny.  I suppose this means there is no command I can use to put my folders in alphabetical order automatically.
    I am dragging them now -- but with about 30 folders with 40 to 50 names in each ... this is a time consuming chore
    that shouldn't be necessary.  Apple should pay more attention to MAIL .... most of my Apple friends do not even use itl.

  • Creating subroutines within subroutines

    Many times we have to code within subroutines (e.g. user exits for Sales). At time pieces of logic are reusable or can be abstracted into subroutines.
    How can we create subroutines within a user exit subroutine? Or is there another way, perhaps an INCLUDE? Although I am a little wary about using INCLUDEs. Here is why
    If condition 1
       If condition 2
         Logic1
       Else
        Logic2
    Else
    Logic1
    Endif
    Currently I would rewrite the entire code for Logic1 twice in the subroutine. This is the issue I am trying to resolve. Thank you.

    It works if you do something like this
    report prog1
    include include1
    form form1
    perform task1
    endform
    INCLUDE1
    form task1
    endform.
    But it will not work if you try something like this out
    form form1
      include include1
      perform task1
    endform

  • How can I put a time delay between specific events in a while loop?

    How can I put a time delay between specific events within the same while loop? I'm already using the "wait" command to control the overall loop iteration speed. But I want to time the individual events as well.

    Hi Jesse,
    You can use a flat sequence. In each box you can put your individual events and attached wait.
    Don't forget to reduce your total loop time of the time you added in the individual sequences.
    Doc-Doc
    Doc-Doc
    http://www.machinevision.ch
    http://visionindustrielle.ch
    Please take time to rate this answer

  • Can we put multiple Database Polling within the asynchronous process

    Hi,
    Can we put multiple Database polling within the the same asynchronous BPEL process.
    There will be multiple Receive activities to receive the data from the poller.
    Saptarishi

    Hi Peter,
    I am using 10.1.3.4 and cannot use ESB/mediator.
    For the 2nd option,
    I have tried to put multiple receive's to poll data from a table but it does not work(it waits at the 2nd Receive). Let me try to elaborate the issue a bit.
    I have created a table for polling.
    The table has 3 columns :- transaction_id, status, is_read
    is_read is kept to implement the logical delete strategy of DB polling.
    What I need to do is to maintain a single instance of BPEL to maintain a transaction(which is uniquely identified by transaction_id).
    The BPEL should track the different stages of the transaction, i.e whenever a new row is inserted in the table with the updated status for a transaction, it must find the correct instance(by co-relating the transaction_id) and go to the next step (wait for the next receive activity) until all the steps of the transaction is completed.
    In the code, I created a correlation set consisting of transaction_id(only). The property transaction_id has an alias to the inbound variable's payload.
    In the first Receive, I checked the "create instance" checkbox. Also the correlation set is initialized.
    From next Receive onwards the correlation set is checked.
    The polling frequency is 5 secs.
    The first Receive works fine and the process is instantiated. But it waits at the 2nd Receive indefinitely.
    It will be very helpful if you can try this once. If you feel this is not the right approach, please guide me.
    Thanks and Regards,
    Saptarishi

  • How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?

    How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?
    That is about the best way I can phrase my question.
    I put year/month/date at the beginning of a show, hoping for them to sort by date and I get mixed results.
    Would creating a Folder within the Artists' existing folder  that said "Pearl Jam Live", inside the "Pearl Jam" folder in iTunes Media help this "Date Sorting Issue"?
    Thank you.

    Or is there a way to go through aperture to make a new reference library that I can move the masters into later?
    you do not move the masters into a references library - you turn your current library into a referenced library.  As Terence Devlin said:
    File -> Relocate Masters
    What you should set up:
    Select a folder, where you want to store your referenced files - probably on an external drive.
    Decide on a hierarchical folder structure inside this folder - that is completely up to you.
    Select a project from your library and use the command "File -> Relocate Masters/Originals" to move the original image files to the folder where you want to go them to. Only take care not to send two projects to the same folder.
    Alternatively, if you do not care about the folder structure Aperture will use, select all images at once from the "Photos" view and let Aperture decide how to assing the folders - in the "Relocate Originals" dialoge you can specify a subfolder format.
    Regards
    Léonie

  • How can I put the report generated by a program into a File?

    Hi all,
       How can I put the report generated by a program into a File?It can be in TXT format or excel format which ever is possible.
    I need to export this file to memory,How can I do that??
    Regards,
    Shashank.

    Hello Shashank,
    Please ignore my previous answer... Ofcourse it works...
    There are several ways to do this...
    two of them are
    1. List -> Save -> File and press enter..
        it will ask for the format, then path where to save it. Just give the path.
    2. Using function module 'GUI_DOWNLOAD'.
    I'm giving the example bellow which explains the usage of both GUI_UPLOAD and GUI_DOWNLOAD.
    To do this... you need to have folder with name 'TEST' and a .txt file in it with name 'test'. And contents of it are :
    TEST1             ,BOT 
    TEST2             ,BOT 
    TEST3             ,BUT 
    with spaces.
    REPORT zssr_bdc .
    DATA: BEGIN OF g_t_itab OCCURS 0,
            matnr LIKE mara-matnr,
            maktx LIKE makt-maktx,
          END OF g_t_itab.
    DATA: g_t_bdcdata TYPE TABLE OF bdcdata.
    DATA: path TYPE string,
          path1 type string.
    path = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test.txt'.
    path1 = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test1.txt'.
    *contents of test.txt    *
    *TEST1             ,BOT  *
    *TEST2             ,BOT  *
    *TEST3             ,BUT  *
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename = path
      TABLES
        data_tab                      = g_t_itab.
    LOOP AT g_t_itab.
      WRITE:/1(18) g_t_itab-matnr, 20(40) g_t_itab-maktx.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       filename = path1
       filetype                      = 'ASC'
      TABLES
        data_tab                      = g_t_itab.
    Now you will get one .txt file with name 'TEST1.TXT' in the TEST folder.
    <b>REWARD POINTS IF IT IS HELPFUL</b>
    Regards
    Sasidhar Reddy Matli

  • Need to raise a restriction that user can not put multiple PO references in PO Number field in Sales Order.

    Hi,
    reference to subject we need a restriction that user can not put different PO reference within an Order. One Sale Order should have one PO reference at Header and Line's of the sales order. Currently what is our issue that all the sales order are created by Quotes from quoting module. Whatever the line items come from quotes into sales order having no PO Number reference with them but when user completing the sales order user puts the PO reference at Sales Order Header which can not be linked or passed on those line items who captured from quotation. Due to this PO reference value difference between Lines and Header system generates multiple AR invoices based on unique PO Number references within an order.
    we need single PO reference per sales order. How can we restrict this if line level PO number reference is different from Header PO number reference that user can not proceed further?
    Regards
    Kaleem A. Bhatti

    Dear Zakir,
    Thanks a lot for your favorable response. The query is solved now by defaulting rules.
    Regards
    Kaleem A. Bhatti

  • To save hard drive space, can I put my iMovie projects and clips on an external drive?

    to save hard drive space, can I put my iMovie projects and clips on an external drive?

    Yes.
    To preserve your projects, all moves should be done from within iMovie, (not the Finder).
    First, the external drive must be formatted as Mac OS Extended (journaled). FAT32 will not work. You can reformat using Disk Utility if you need to.
    When importing video from your camera, you can specify your external drive as the target on the import screen.
    For existing projects, you should move using these instructions.
    http://help.apple.com/imovie/#move7d66613
    There is an error in the instructions where it says to drag the project icon to the icon in the Event Library. You should instead look for your hard drive icon in the Project Library.
    You can move events using these instructions.
    http://help.apple.com/imovie/#mov3ac6d42c
    If you want to move Events, and copy photos, copy music, etc for editing on another Mac, you should use the FILE/CONSOLIDATE MEDIA feature after moving the Project as above.
    http://help.apple.com/imovie/#mov3ac6c7c9

  • Can I put a 2nd hard drive in my Satellite P875-S7200 laptop??

    There appears to be a space underneath for another one so I have to ask. Can I put another hard drive in this laptop or not? I'm not going to buy another hard drive for this thing if I can't.
    Please see the attached photo.
    Thank you.
    Attachments:
    photo2.JPG ‏682 KB

    There are a couple of ways to run DISKPART.  The most common method is probably from within the CMD console:
    Start Menu, enter cmd in the search field, and then click on the CMD icon in the search result section.
    Once the CMD console window launches, enter  diskpart
    Or you can access DISKPART directly from the "run" dialog:
    <win>r    (then in the "run" dialog field,) enter   diskpart
    Here's a screencap of the DISKPART Clean command.  I inserted one of my Flash sticks (disk 3) and ran the Clean command on it.
    The system info is in green color.  My input commands are in blue.
    Microsoft DiskPart version 6.1.7601
    Copyright (C) 1999-2008 Microsoft Corporation.
    On computer: JEFF-PC
    DISKPART> list disk
      Disk ###  Status         Size     Free     Dyn  Gpt
      Disk 0    Online          931 GB      0 B
      Disk 1    Online          465 GB      0 B
      Disk 2    Online          465 GB   100 MB
      Disk 3    Online           14 GB      0 B
    DISKPART> select disk 3
    Disk 3 is now the selected disk.
    DISKPART> list disk
      Disk ###  Status         Size     Free     Dyn  Gpt
      Disk 0    Online          931 GB      0 B
      Disk 1    Online          465 GB      0 B
      Disk 2    Online          465 GB   100 MB
    * Disk 3    Online           14 GB      0 B
    DISKPART> clean
    DiskPart succeeded in cleaning the disk.
    DISKPART>
    That's it.  I always repeat the "list disk" command after selecting the desired disk to eliminate user error (accidentally wiping the wrong HDD).  The * symbol tells the user which disk is in focus, or which disk the system has selected for the user commands to be performed on the disk.
    The Clean command usually takes only a few seconds to complete.
    After running the Clean command, the HDD or Flash Stick will then appear as "unallocated" in the Disk Management Console window.  I always do this before Cloning with my Acronis boot disc since Acronis will automatically select the unallocated HDD as the "Target" HDD.  It also eliminates any question when selecting the Source HDD since the Target HDD will appear in Acronis (and any other Cloning/Imaging prep dialog screens) as containing no data. 
    Another way to be safe in DISKPART and assure that the desired disk is the one that you want to clean, is to launch Disk Management in Windows  at the same time that DISKPART is launched, using <win>r  diskmgmt.msc
    The PC's disks will be numbered the same as in DISKPART.  For example, "disk 0" is my OS and "C" HDD, etc.
    Wish I could help with your Driver issues.  That's an area of PC's where I'm a rookie

  • Can i put ME-SYNC_USER in T01?

    Hi, i did an application with syncbo S01, and i put the ME-SYNC_USER in each syncbo...
    Now, i´m doing an application with some syncbo T01, can i put ME-SYNC_USER too and in getlist and gedetail filter with this user?
    Thanks,

    mmmmm, i have the code of ALM_MEREP_090_GETLIST
    FUNCTION alm_merep_090_getlist.
    *"*"Lokale Schnittstelle:
    *"  TABLES
    *"      CUSTOMIZED_USERS STRUCTURE  MAM_20_USER_DATA
    *"      RETURN STRUCTURE  BAPIRET2 OPTIONAL
    * SyncBO 090 = Userspecific customizing
    * The returntable holds a list of all users set up in
    * MAM customizing
    * If users are already passed from the table, only these
    * users are selected (used for server-driven).
      DATA ls_alm_me_d997 TYPE alm_me_d997.
      DATA lv_message.                                    "#EC NEEDED Dummy
    *  DATA ls_return    TYPE bapiret2. "Not needed due to table parameter
      DATA lt_alm_me_d997 TYPE TABLE OF alm_me_d997.
      DATA ls_user_data   TYPE alm_me_user_data.
    * BAdI data
      STATICS lr_badi_cust_user TYPE REF TO if_ex_alm_me_090_cust_user.
    * Check customizing, if selection is active
      CALL FUNCTION 'ALM_ME_SELECTION_ACTIVE'
           EXPORTING
                syncbo                 = gc_syncbo_090
                method                 = gc_method_getlist
           EXCEPTIONS
                syncbo_method_inactive = 1
                OTHERS                 = 2.
      IF sy-subrc NE 1.
    * Select users
        SELECT * FROM alm_me_d997 INTO TABLE lt_alm_me_d997.
        IF sy-subrc NE 0.
    * Keine Benutzerzuordung zu MAM Szenarien gefunden
          MESSAGE e008(alm_me) INTO lv_message.
    * In case of error fill return table
          CALL FUNCTION 'ALM_ME_MESSAGE_TO_RETURN'
               TABLES
                    return = return.
    * -> Exit
          EXIT.
        ENDIF.
    * Check if table was filled from middleware
        DATA lv_lines TYPE i.
        DESCRIBE TABLE customized_users[] LINES lv_lines.
    * Get headers
    * Map the customizing table to the function module interface
    * to be sure changes on the database or interface will not
    * cause any troubles.
        LOOP AT lt_alm_me_d997 INTO ls_alm_me_d997.
    * When users are given in the table, just select them,
    * and not all users
          IF lv_lines NE 0.
            READ TABLE customized_users
              WITH KEY userid = ls_alm_me_d997-userid.
            IF sy-subrc NE 0.
    * Entry not found, continue loop without adding the data
              CONTINUE.
            else.
    * Delete the passed entry since it will be added with data below
              DELETE customized_users[] index sy-tabix.
            ENDIF.
          ENDIF. "Users where passed from middleware
    * Get the data
          CALL FUNCTION 'ALM_ME_USERCUST_HEADER'
               EXPORTING
                    customizing_user =
                       ls_alm_me_d997-userid                 "#EC DOM_EQUAL
               IMPORTING
                    user_customizing_head  = ls_user_data
               TABLES
                    return                 = return
               EXCEPTIONS
                    customizing_read_error = 1
                    OTHERS                 = 2.
          IF sy-subrc NE 0.
            MESSAGE w029(alm_me)
              WITH 'Benutzer'(001) ls_alm_me_d997-userid
              INTO lv_message.
            CALL FUNCTION 'ALM_ME_MESSAGE_TO_RETURN'
                 TABLES
                      return = return.
          ELSE.
            MOVE-CORRESPONDING ls_user_data TO customized_users.
          APPEND customized_users.
        ENDIF.
        ENDLOOP.
      ENDIF. "Standard selection active
    * Call customer BAdI
    * The BAdI can be used to select a own order list
    * or to modify the data selected.
    * The data returned in order_list must be the same
    * content as in getdetail ORDER_HEADER for the same
    * order. Therefore usually the getdetail BAdI has
    * to be implemented as well
    * iniztialize BAdI
      IF lr_badi_cust_user IS INITIAL.
        CALL METHOD cl_exithandler=>get_instance
    *    EXPORTING
    *      EXIT_NAME = 'ALM_ME_090_CUST_USER'
        CHANGING
          instance = lr_badi_cust_user.
      ENDIF.
    * call BAdI
      CALL METHOD lr_badi_cust_user->getlist
        CHANGING
          user_list = customized_users[]
          return    = return[].
    ENDFUNCTION.
    But i continue without see where fill the user...
    My application is offline, work?
    I have to add the code in my bapi getlist and getdetail no?
    The user in the middleware or in the backend have to setup in any table?
    Thanks,

  • How to Edit names within Loop Library

    I've edited a MIDI Apple Loop from Jam Packs and saved it as an MIDI Apple Loop in the library.
    What I typed in as a name for the file is not what appeared in the loop library?
    1. Why did the text alter from I typed?
    2. How can I edite the name in the within loop library.
    3. How do I delete apple loops I've created from the apple loop library?
    Thank you
    - I did look in the manual and within the user help in Logic, but could find nothing. I know I must be looking under the wrong 'key word' search.
    What can I say!
    Message was edited by: StyleSupport

    StyleSupport wrote:
    1. Why did the text alter from I typed?
    You must select the green loop in the Arrange and go to Region menu "Add loop to the library" something like that or drag and drop the region to the Library in the Media dock.
    This way a new dialog will show( see the picture below ) where you need to fill new "unique" name or to add some user (sub name), choose the group etc.
    2. How can I edite the name in the within loop library.
    3. How do I delete apple loops I've created from the apple loop library?
    You "user" green loop is stored to ...user/Library/Audio/Apple Loops/User Loops.
    Browse to this dir and edit or delete the loop.
    You "user" green loop is stored to ...user/Library/Audio/Apple Loops/User Loops.
    Browse to this dir ( you will find a folder labeled as "Single" or something like that open it ) and edit or delete the loop in question.
    !http://img42.imageshack.us/img42/508/greenloops.gif!
    !http://img59.imageshack.us/img59/4967/aglogo45.gif! [www.audiogrocery.com|http://www.audiogrocery.com]

Maybe you are looking for

  • Ifolder client encounted an error while connecting to server

    Windows 7 64 bit client give me an error when i try to connect to my i folder system. An error was encountered while connecting to ifolder server. please verify the information entered and try again if the problem persists, please contact your networ

  • Issue with ADD NEW ROW button

    Hi, When I click 'ADD NEW ROW ' button, an empty row is getting created as the last but one column. I want the new row should be add at last. (as the last row). The code I am using : Row row = vo.createRow(); vo.last(); vo.insertRow(row); row.setNewR

  • Uninstalling CS6 from Windows 8.1

    Hello, I installed programs from CS6 Web and Design Premium on my laptop to do some work while I was on vacation. I installed Photoshop, Illustrator and Flash, and now I cannot seem to be able uninstall them. They are installed on a Windows 8.1 lapto

  • BPC::EVCVW with filters no hierarchy view

    Hi, We are using EVCVW function on a BPC Excel template on a dimension with hierarchy. Our problem is that when we use the filters, the display dimension values appear as a table instead of as a hierarchy. The Hierarchy radio button is selected. But

  • OTL hxc_timestore_deposit.create_attribute usage

    Hello Everyone, I have the following requirement: Users may enter timecards manually and submit it. I have to write a program which will pick up these submitted timecards and based on some validation, need to create some attribute for some detail ent