Cannot insert field or paste in existing Local Variable (container of booleans)

Cannot insert field or paste in existing Local Variable (container of booleans)...  TestStand 4.1.
This is very strange, especially since I have done it before. 
The "paste" and "insert field" selections are greyed out and disabled from the right-click menu.  I have tried everything I could imagine, and searched various combinations of posts.  I am sure it is something redicoulously simple, bu I cannot find the redicule to solve this annoying issue.
The local variable is a container of booleans.  It has 90 elements and I need to add one more.  I cannot edit / rename or do anything with this Local.  Must be karma (for thos who know me in the LabVIEW forum).  Usually, you right click, insert field and it's there..  Not this one..
Has anyone seen this before?  Closing and re-opening TestStand did not change anything.  There is a matching cluster in LabVIEW which feeds the local in TestStand.
It is a container of custm data type.  The Edit Flags are ok (edit is allowed).  Can't think of any other valuable info..
Solved!
Go to Solution.

I should correct an erratum in my original post.. 
Since I am not the original author of the code, I am not sure it is a custom container.  As a matter of fact, I don't think it is.
It does not appear in the custom data types.  So it must be a Local.
I will attempt to clarify what I am dealing with...  (TestStand 4.1)
Maybe pictures are worth thousands of words.
As with typical TestStand projects, there are various variables:  Locals, Parameters, FileGlobals, etc..  Nothing odd here.
The one I am concerned about is the Options_Present which is a container of booleans.
I am sure I have edited this one before.  Although I seem to recall that it was automatic after changing the cluster in LabVIEW.
Within the Locals, the  2 that are underligned in red do not allow to edit anything (change name, add, delete, paste).
Trying to Insert Field or paste are not possible.
Attachments:
Variables.PNG ‏8 KB
Locals.PNG ‏28 KB
cannotInsert.PNG ‏9 KB

Similar Messages

  • How can you create a local variable from a boolean control?

    I want to create a local variable from a boolean control, but it says that boolean latch actions are incompatible with local variables, but I need a way to check this boolean control in two differents loops, how can I do it?

    "Graci" schrieb im Newsbeitrag
    news:[email protected]..
    > I want to create a local variable from a boolean control, but it says
    > that boolean latch actions are incompatible with local variables, but
    > I need a way to check this boolean control in two differents loops,
    > how can I do it?
    Use global variables.
    Compare them with a constant Boolean like F or T.
    The result is true or false and then you can use it in a Cae-Loop.
    Martin

  • Having Trouble Copy and Pasteing Local Variable in LabVIEW 2010

    I am Having Trouble Copy and Pasteing Local Variable in LabVIEW 2010 in s subVI.
    I have a VI that has a Local Variable called "Node Addr". I can select it OK, and it appears to Copy OK, But when I go to paste it, nothing appears. It doesn't matter if I use Cntrl-C Cntrl-V or the Copy and Paste from the Edit menu, I get the same results. I tried many times and got the same results. I made sure that I had click a paste location. I can insert the Local Variable if I use the Data Communication panel.
    On one of the Paste, I got an error in the error list that said that a Local Variable was not connected to anything. When I clicked on the error, it took me to an insible item in the lower right corner of the block diagram that had nothing but a select box around it. I couldn't select the invisible item, but I could delete it.
    Why does the copy and paste of this local variable not work?
    Why does the paste cause the insertion of an invisible item?

    dbaechtel wrote:
     My VI is fairly complicated. In several places in the VI, I am either reading or writing to this variable which is an numeric Indicator on the Front Panel. Using local variables seems to be the best way to handle this situation rather that using wiring all over the VI. Since the VI is mainly a State Machine and there are only 2 Writes to the local variable, I am not afraid of race conditions in this case.  NO!! While you may think that using Locals is your solution to wiring, it is not!  The fact that you are writing and reading, most likely from several places, will most definitely contribute to a race condition.  Depending on your implemetation, you should ALWAYS use wires.  The wires are the variable.  If you are using a loop (While, For), then using shift registers are appropriate means for routing values so that they are used by other sections of the code, later.  One thing you must respect with LabVIEW is the dataflow.  That's where Locals often fail.
    I am not copying the Local Variable from one VI to another.
    I am not copying the Local Variable from one VI to another.
    The Data Communication panel is one of the panels that shows up in the Functions pop up list when editing the Block Diagram. It is the panel that includes the Local Variable function.
    I don't know if the invisible item that was inserted in my block diagram was hidden or not. All I know is that the Errors List said that it was a Local Variable and that it was not connected to anything. I couldn't select it to get more information. All I could do was delete it.
    You did not address my questions about why the Copy and Paste does not work properly for my Local Variable.  Maybe it's a sign from the Software Gods not to use them LOL!..
    So if I understand correctly, you are trying to copy & paste the Local Variable from within the same VI.  How large is your block diagram?  Did you try right-click on the variable and select "Find > Local Variables"?  If it's a block diagram larger than 1 single screen (which it shouldn't), then it is possible that the Local is hiding beyond the screen.  You should find it as I described earlier.
    See my comments in red above.

  • Local variable's VariableElement not accessible through treepath

    Hi,
    I'm extending TreePathScanner visitor to localize and handle certain annotations associated with variables of any kind (field, parameters and local variables).
    To do so I overrode the visitVariable method that, as far I understand, should be able to obtain the corresponding javax.lang.model's VariableElement for any variable (whatever its kind) based on the current three path, see code bellow.
    It does work well with fields and parameter, however with local variables Trees.getElement simply returns a null. All the information is in fact in the code tree VariableTree node and I could retrieve what I needed from it but rather refrain from using com.sun. ... API if not really necessary and of course implement the processing twice.
    Perhaps the javax.lang.model.... object tree is not built for elements within a method body? or is this a bug? com.sun.source.util.Trees#getElement javadoc only says that a null is returned if the element is not "available".
    Thanks in advance.
    import javax.lang.model.element.VariableElement;
    import com.sun.source.util.TreePathScanner;
    import com.sun.source.util.Trees;
    import com.sun.source.tree.VariableTree;
    import com.sun.source.util.TreePath;
    public class MyVisitor extends TreePathScanner<Object,Trees> {
         @Override
         public Object visitVariable(VariableTree node, Trees trees) {
              TreePath path = getCurrentPath();
              VariableElement ve = (VariableElement) trees.getElement(path);
              if (ve != null) {
                            // The case for parameters and fields.
                            process(ve);
              else {  // Funnily getElement return null for local variables
                            process(node);
              return super.visitVariable(node, trees);
    }

    I had a similar problem where trees.getElement(TreePath) was returning null. In my case it had to do with the fact that symbol resolution wasn't done yet. I was trying to invoke my TreePathScanner after calling javacTask.parse() but I had to switch to after calling javacTask.analyze() otherwise trees.getElement(TreePath) always returned null. My issues was with a TreePath for a method though.

  • Is there an easier way to create a local variable?

    I want to create a local variable, but I don't wont to have to find the terminal first and then use the option create-local variable. Is there a way to make a copy of an existing local variable? If I use the CTRL-C and CTRL-V option another terminal is created too.

    > Great! That was exactly what I wanted. It even works if more than one
    > variable is selected.
    This may not apply in your situation, but I feel obliged to make this
    warning anytime I see this sort of posting. If you find yourself making
    too many local variables, it is worth checking to see if you are doing
    things the best way.
    If you are using the locals for communication between parallel loops or
    for UI -- writing to controls, then keep trucking. That is why they
    were added. If you are using them as storage locations, like variables
    in BASIC or C, or to avoid wires, then you should definitely read the
    devzone article about race conditions and the usage of globals/locals.
    If not, you will probably find yourself with some monument
    al debugging
    sessions later on.
    If you have questions, fire away.
    Greg McKaskle

  • Cannot insert Chinese character into nvarchar2 field

    I have tested in two environments:
    1. Database Character Set: ZHS16CGB231280
    National Character Set: AL16UTF8
    If the field type of datatable is varchar2 or nvarchar2, the provider can read and write Chinese correctly.
    2. Database Character Set:WE8MSWIN1252
    National Character Set: AL16UTF8
    The provider can not read and write Chinese correctly even the field type of datatable is nvarchar2
    I find that for the second one, both MS .NET Managed Provider for Oracle and Oracle Managed Data Provider cannot read and write NCHAR or NVARCHAR2 fields. The data inserted into these fields become question marks.
    Even if I changed the NLS_LANG registry to SIMPLIFIED CHINESE_CHINA.ZHS16CGB231280, the result is the same.
    For the second situation, only after I change the Database Character Set to ZHS16CGB231280 with ALTER DATABASE CHARACTER SET statement, can I insert Chinese correctly.
    Does any know why I cannot insert Chinese characters into Unicode fields when the Database Character Set is WE8MSWIN1252? Thanks.
    Regards,
    Jason

    Hi Jason,
    First of all, I am not familiar with MS .NET Managed Provider for Oracle or Oracle Managed Data Provider.
    How did you insert these Simplified Chinese characters into the NVARCHAR2 column ? Are they hardcoded as string literals as part of the SQL INSERT statement ? If so, this could be because, all SQL statements are converted into the database character set before they are parsed by the SQL engine; hence these Chinese characters would be lost if your db character set was WE8MSWIN1252 but not when it was ZHS16CGB231280.
    Two workarounds, both involved the removal of hardcoding chinese characters.
    1. Rewrite your string literal using the SQL function UNISTR().
    2. Use bind variables instead of text literals in the SQL.
    Thanks
    Nat

  • Cannot insert PS_TXN ORA-00942 table or view does not exist

    We are using jdev 11.1.1.4.0
    We have two users in the database and various application modules which connect to these users using datasources
    We have tested the application with applicatin module pooling enabled off to test for passivation and activation errors and the application works fine.
    Also on our internal test enviorment which has more then 10 concurrent users the application works fine
    But at UAT it has started suddenly to give errors Cannot insert in PS_TXN ORA-00942 table or view does not exist
    When I see the data in PS_TXN tables in various users I can see that passivation has taken place for the same day when there sporadic errors have been reported all having the cause as ORA-00942 table or view does not exist.
    But one strange thing that I have observed is that the COLLID column has sequence numbers interchanged for the users randomly, database user 1 has sequence number from database user 2 seq and vice a versa in COLLID
    As far as this problem goes the passivation should have failed with ORA-00001 primary key voilated but that is not the case
    May be the keys have still not got to a number where they collide.
    But I am totally taken aback on such a behaviour and I am not sure how to correct it.
    So we have two porblems here
    1) why did this error come in first place PS_TXN ORA-00942 table or view does not exist
    2) Why are the sequence numbers interchanged for the databse users ?
    Edited by: user3067156 on Jun 19, 2012 3:12 AM

    I got reply to my second question
    It looks like a bug in the framework and the suggestions are to use only one ps_txn and ps_txn_seq by modifying the internal connection
    But the first problem is not yet known why did it appear suddenly
    Edited by: user3067156 on Jun 19, 2012 3:12 AM

  • Java Install,  Cannot insert a key value pair into the secure store fails,

    Dear All,
    I'm doing Java Intallaion in BI7 on CI and in the midle of installtions we encounter,
    TRACE      [iaxxejsexp.cpp:199]
               EJS_Installer::writeTraceToLogBook()
    NWException thrown: nw.secureStore.cannotInsertIntoSecureStore:
    Cannot insert a key value pair into the secure store fails; see output of log file SecureStoreInsert.log:
    SAP Secure Store in the File System - Copyright (c) 2003 SAP AG
    A key/value pair with this key already exists in the store..
    ERROR      2008-04-23 11:36:21
               CJSlibModule::writeError_impl()
    CJS-30051  Cannot insert a key value pair into the secure store fails; see output of log file SecureStoreInsert.log:
    SAP Secure Store in the File System - Copyright (c) 2003 SAP AG
    A key/value pair with this key already exists in the store..
    TRACE      [iaxxejsbas.hpp:460]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    ERROR      2008-04-23 11:36:21 [iaxxgenimp.cpp:731]
               showDialog()
    FCO-00011  The step insertAdminDataInSecStore with step key |NW_Addin_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|8|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|4|0|insertAdminDataInSecStore was executed with status ERROR .
    TRACE      [iaxxgenimp.cpp:719]
               showDialog()
    There's any want in here can help us Please,
    Thanks and Best Regards,
    Chrisna

    The clean way to Uninstall JAVA is through SAPINST. 
    Make user you drop only the JAVA Schema ID (SAPSR3DB)
    If you want to uninstall manually, follow as mentioned below :
    1. Stop the central services instance and all dialog instances of your SAP system:
    a) Log on to the corresponding instance host as user <sapsid>adm.
    b) Execute the following commands:
       To stop the central services instance:
                 stopsap r3 <SCSinstanceName>
       To stop a dialog instance:
                stopsap r3 <DialogInstanceName>
    2. Stop the J2EE Engine of the central instance:
    a) Log on to your SAP system.
    b) Call transaction SMICM.
    c) Choose Administration J2EE Instance (local) Send Hard Shutdown
    2. Drop the J2EE DB schema (the db schema for this one SAP SID) BE VERY CAREFUL, do not drop the DB schema for another existing system or
    the ABAP schema.
    a. Log on as user ora<dbsid>.
    b. Start sqlplus and connect to the database. Enter:
    sqlplus /nolog
    c. SQLPLUS>connect / as sysdba
    d. Enter the following command to delete the database objects of the database schema:
    SQLPLUS> drop user SAP<SCHEMA_ID>DB cascade;
    e. Enter the following command to get the file name of the corresponding data file in the file system:
    SQLPLUS> select file_name from dba_data_files where \
    tablespace_name = ’PSAP<SCHEMA_ID>DB’;
    f. Enter the following command to delete the tablespace of the database schema:
    SQLPLUS> drop tablespace PSAP<SCHEMA_ID>DB including contents;
    g. Exit sqlplus:
    SQLPLUS> exit
    3. Remove folder "data" at: /sapmnt/QO1/global/security/data
    4. Remove folder "SDM" at: /usr/sap/<sid>/<Central instance>/SDM
    5. Remove folder "j2ee" at:  /usr/sap/<sid>/<Central instance>/j2ee
    6. Revert CI instance profile to their original state (backup copies should exist) # they should be in the state before the start of the JavaAdd In
    7. If lines beginning with the following parameters appear, delete these lines from the default profile, /usr/sap/<SAPSID>/SYS/profile/DEFAULT.PFL:
    j2ee/dbname =
    j2ee/dbtype =
    j2ee/dbhost =
    j2ee/dbadminurl =
    j2ee/scs/host =
    j2ee/scs/system =
    j2ee/ms/port =
    8. If lines beginning with the following parameters appear, delete these lines from the central instance pro?le and from all dialog instance pro?les,
    /usr/sap/<SAPSID>/SYS/profile/<SAPSID>_<INSTANCE_NAME>_<host_name>:
    exe/j2ee =
    exe/jlaunch =
    rdisp/j2ee_start_control =
    rdisp/j2ee_start =
    rdisp/j2ee_timeout =
    rdisp/j2ee_libpath =
    rdisp/frfc_fallback =
    jstartup/trimming_properties =
    jstartup/instance_properties =
    jstartup/protocol =
    jstartup/vm/home =
    jstartup/max_caches =
    jstartup/release =
    j2ee/dbdriver =
    9. Delete the central services instance
    10. Restart ABAP and Install JAVA Add-in
    Edited by: Shaji Jacob on Apr 27, 2008 11:46 AM

  • Field T_STCD1 does not exist in form this erroe msg coming in smartform

    hi,
    in my smartform, if i give one set of input like, 1st qtr of 2008, vendor and compcode, its displaying the value.
    but if i give the input like 1st qtr of 2007, vendor and some other compcode its giving some error like
    field T_STCD1 does not exist in form .
    this error coming after printpreview and not displaying.
    how can i debug it.
    can any one help me...........plz
    its very urgent.
    thanks.

    report  zmm_vat_ex_cert message-id zz                        .
                             TABLE DECLARATION                           *
    tables:  bseg , tvko.
    *Intenal Tables Declarations                                           *
    types: begin of it_address_type .
            include structure zvat_vendor.
    types :end of it_address_type.
    types : begin of it_address_info_type.
            include structure zadrc_table.
    types: end of it_address_info_type.
    types : begin of it_desig_type.
            include structure zmm_vat_sign.
    types: end of it_desig_type.
    types: begin of it_bkpf_type,
          bukrs  type bkpf-bukrs,
          belnr  type bkpf-belnr,
          gjahr  type bkpf-gjahr,
          blart type bkpf-blart,
          bldat  type bkpf-bldat,
          xblnr type bkpf-xblnr,
          awkey  type bkpf-awkey ,
          end of it_bkpf_type.
    types : begin of it_bseg_type,
          bukrs like bseg-bukrs,
          belnr like bseg-belnr,
          gjahr like bseg-gjahr,
          bschl like bseg-bschl,
          mwskz like bseg-mwskz,
          shkzg like bseg-shkzg,
          wrbtr like bseg-wrbtr,
          sgtxt type bseg-sgtxt,
          end of it_bseg_type.
    types: begin of it_rseg_type,
           ebeln like ekpo-ebeln,
           ebelp like ekpo-ebelp,
           bukrs like bkpf-bukrs,
           txz01 type ekpo-txz01,
           wrbtr type rseg-wrbtr,
           end of it_rseg_type.
    data:begda type d, endda type d.
    types: begin of it_item_type.
            include structure zitem_vat.
    types:end of it_item_type.
    data: it_rseg type table of it_rseg_type,
           wa_it_rseg like line of it_rseg.
    data: gt_addr type table of it_address_type.
    data gt_addr_info type table of it_address_info_type.
    data gt_bkpf type table of it_bkpf_type.
    data gt_bseg type table of it_bseg_type.
    data:
          gt_tvko type standard table of tvko,
          gt_item type table of it_item_type,
          h_itab type table of it_bseg_type,
          it_desig type table of it_desig_type,
          temp_item type table of it_item_type .
    data:wa_addr like line of gt_addr,
         wa_addr_info like line of gt_addr_info,
         wa_bkpf like line of gt_bkpf,
         wa_bseg like line of gt_bseg,
         wa_item like line of gt_item,
         wa_h_itab like line of h_itab,
         wa_it_desig like line of it_desig,
         wa_temp_item like line of temp_item,
        wa_tvko LIKE LINE OF gt_tvko.
         wa_tvko type tvko.
         Data Declaration                                                *
    data: sumtotal type bseg-wrbtr, "rbkp-waers ,
          sl_no type zmm_vatex_sno-serial_no,
          fiscal_year type string,
          fm_name type rs38l_fnam ,
          w_q_flag(5),
          w_quarter type string ,
          close_date type sy-datum ,
          fiscal type sy-datum, fiscal_nxt type sy-datum,
          gv_belnr type bkpf-belnr,
          gv_gjahr type bkpf-gjahr.
    data: ca_quarter type i.
    data: l_adrnr type t001-adrnr.
    data wa_vatex_sno type zmm_vatex_sno.
    data: q(1).
    data: stdtext(25).
    S E L E C T I O N   S C R E E N                                     *
    selection-screen begin of block b1 with frame title text-s01.
    select-options: s_date for sy-datum obligatory no-extension.
    parameters : vendor type lfa1-lifnr obligatory ,
                 compcode type bkpf-bukrs obligatory.
    select-options taxcode for bseg-mwskz obligatory default 'VI'.
    selection-screen end of block b1.
    at selection screen
    at selection-screen on s_date.
      if s_date-low0(4) <> s_date-high0(4).
        message e023 with text-e01.
      endif.
    *get calendar quarter  using the month entered in From date.
    *calculate the fiscal year and quarter
      if s_date-low4(2) > '0' and s_date-low4(2) <= '3' .
        ca_quarter = 1.
        fiscal0(4) = s_date-high0(4) .
        fiscal_nxt0(4) = s_date-high0(4) - 1.
        concatenate  fiscal_nxt2(2) '-' fiscal2(2)  into fiscal_year .
        concatenate 'last quarter of year ' fiscal_nxt0(4) '-' fiscal0(4)
        into w_quarter separated by space .
        q = '4'.
      elseif ( s_date-low4(2) > '3' and s_date-low4(2) <= '6' ).
        ca_quarter = 2.
        fiscal0(4) = s_date-high0(4) + 1.
        fiscal_nxt0(4) = s_date-high0(4).
        concatenate  fiscal_nxt2(2) '-' fiscal2(2)  into fiscal_year .
        concatenate '1st quarter of year ' fiscal_nxt0(4) '-' fiscal0(4)
         into w_quarter separated by space .
        q = '1'.
      elseif ( s_date-low4(2) > '6' and s_date-low4(2) <= '9' ).
        ca_quarter = 3.
        fiscal0(4) = s_date-high0(4) + 1.
        fiscal_nxt0(4) = s_date-high0(4).
        concatenate  fiscal_nxt2(2) '-' fiscal2(2)  into fiscal_year .
        concatenate '2nd quarter of year ' fiscal_nxt0(4) '-' fiscal0(4)  INTO
         w_quarter separated by space .
        q = '2'.
      elseif ( s_date-low4(2) > '9' and s_date-low4(2) <= '12' ).
        ca_quarter = 4.
        w_quarter = '3rd quarter of year'.
        fiscal0(4) = s_date-high0(4) + 1.
        fiscal_nxt0(4) = s_date-high0(4).
        concatenate  fiscal_nxt2(2) '-' fiscal2(2)  into fiscal_year .
        concatenate '3rd quarter of year '  fiscal_nxt0(4) '-' fiscal0(4)  INTO
         w_quarter separated by space .
        q = '3'.
      endif.
    *get first and last day of quarter by fetching calendar quarter and year in FM
      call function 'HR_99S_GET_DATES_QUARTER'
        exporting
          im_quarter = ca_quarter
          im_year    = s_date-low+0(4)
        importing
          ex_begda   = begda
          ex_endda   = endda.
    *validate the input dates is start and end of quarter
      if  s_date-low <> begda or  s_date-high <> endda.
        message e023 with 'Enter quarter begin and end dates only'.
      endif.
    *get last day of next month. for close date
      endda = endda + 1.
      call function 'RP_LAST_DAY_OF_MONTHS'
        exporting
          day_in            = endda
        importing
          last_day_of_month = close_date
        exceptions
          day_in_no_date    = 1
          others            = 2.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
         Start of Selection
    start-of-selection.
    *CNO is specific to a Quarter/ Company code/ Vendor.
      unpack vendor to vendor.
      clear:sl_no, wa_vatex_sno.
      select single * from zmm_vatex_sno into wa_vatex_sno where from_date
      eq s_date-low and to_date eq s_date-high and vendor eq vendor
        and  compcode eq compcode.
      if sy-subrc eq 0.
        sl_no = wa_vatex_sno-serial_no.
      else.
        select max( serial_no )  from zmm_vatex_sno into wa_vatex_sno-serial_no  WHERE
          from_date  eq s_date-low and to_date eq s_date-high and compcode eQ compcode.
        if sy-subrc = 0.
          sl_no = wa_vatex_sno-serial_no  + 1.
        else.
          sl_no =  1.
        endif.
        wa_vatex_sno-from_date = s_date-low.
        wa_vatex_sno-to_date = s_date-high.
        wa_vatex_sno-vendor = vendor.
        wa_vatex_sno-compcode = compcode.
        wa_vatex_sno-serial_no = sl_no.
        insert zmm_vatex_sno from wa_vatex_sno.
      endif.
    *data selection from bkpf by date,fiscal and compcode
      refresh gt_bkpf.
      select bukrs
            belnr
            gjahr
            blart
            bldat
            xblnr
            awkey
            into  table  gt_bkpf from bkpf
            where bukrs eq compcode and
            budat in s_date and gjahr eq fiscal+0(4).
      check not gt_bkpf[] is initial.
      refresh gt_bseg.
      select bukrs
             belnr
             gjahr
             bschl
             mwskz
             shkzg
             wrbtr
             sgtxt from bseg into table gt_bseg
        for all entries in gt_bkpf where
              bukrs eq compcode and
              mwskz in taxcode and
              lifnr eq vendor and
             belnr = gt_bkpf-belnr and
         gjahr = gt_bkpf-gjahr  and shkzg = 'H'.
    selection without vendor   and posting key 40     *
      refresh h_itab.
      select bukrs
             belnr
             gjahr
             bschl
             mwskz
             shkzg
             wrbtr from bseg into table h_itab
             for all entries in gt_bseg
             where bukrs = gt_bseg-bukrs and
             belnr = gt_bseg-belnr and
             mwskz = gt_bseg-mwskz and
             gjahr = gt_bseg-gjahr  and
             ( bschl = '40' or bschl = '21' ).
      if sy-subrc = 0.
    deduct the amount if posting key is 40 for PO based docs
        clear wa_h_itab.
        loop at h_itab into wa_h_itab where bschl = '40'.
          clear wa_bseg.
          read table gt_bseg into wa_bseg with key belnr = wa_h_itab-belnr.
          if sy-subrc = 0.
            read table gt_bkpf into wa_bkpf with key belnr = wa_h_itab-belnr.
            if wa_bkpf-blart <> 'KR'.
              wa_bseg-wrbtr = wa_bseg-wrbtr - wa_h_itab-wrbtr.
            endif.
            modify  gt_bseg  from wa_bseg
             transporting wrbtr where belnr = wa_bseg-belnr
             and bschl = wa_bseg-bschl  .
          endif.
          clear wa_h_itab.
        endloop.
    deduct the amount if posting key is 21 for non-PO based docs
        clear wa_h_itab.
        loop at h_itab into wa_h_itab where bschl = '21'.
          clear wa_bseg.
          read table gt_bseg into wa_bseg with key belnr = wa_h_itab-belnr.
          if sy-subrc = 0.
            read table gt_bkpf into wa_bkpf with key belnr = wa_h_itab-belnr.
            if wa_bkpf-blart = 'KR'.
              wa_bseg-wrbtr = wa_bseg-wrbtr - wa_h_itab-wrbtr.
            endif.
            modify  gt_bseg  from wa_bseg
             transporting wrbtr where belnr = wa_bseg-belnr.
          endif.
          clear wa_h_itab.
        endloop.
      endif.
    final internal table
      clear wa_item. refresh gt_item. clear wa_bseg.
      loop at gt_bseg into wa_bseg.
        read table gt_bkpf into wa_bkpf with key belnr = wa_bseg-belnr .
        if sy-subrc = 0.
          move :
           wa_bkpf-xblnr to wa_item-xblnr,
                wa_bkpf-belnr to wa_item-belnr,
                wa_bkpf-bldat to wa_item-bldat,
               wa_bseg-wrbtr to  wa_item-wrbtr.
        endif.
    *selections for item description
        refresh it_rseg.
        select  ekpoebeln ekpoebelp ekpobukrs  txz01 rsegwrbtr
          into table it_rseg
          from rseg join ekpo
          on rsegebeln = ekpoebeln
          and rsegebelp = ekpoebelp
          and rsegbukrs = ekpobukrs
            where rsegbelnr = wa_bkpf-awkey(10) and rseggjahr = wa_bkpf-gjahr AND
            ekpo~bukrs = wa_bkpf-bukrs.
        if sy-subrc = 0.
          loop at it_rseg into wa_it_rseg.
            wa_item-txz01 = wa_it_rseg-txz01 .
            if sy-tabix <> 1.
           wa_item-wrbtr = wa_it_rseg-wrbtr .
              wa_item-wrbtr = space .
            endif.
            append wa_item to gt_item.
          endloop.
        else.
          wa_item-txz01 = wa_bseg-sgtxt.
          append wa_item to gt_item.
        endif.
        clear: wa_bseg, wa_item.
      endloop.
    *if records not found give message.
      if  gt_item[] is initial.
        message e000(vz) with text-x01.
      endif.
    calculate the sumtotal
      loop at gt_item into wa_item.
        sumtotal = sumtotal + wa_item-wrbtr .
      endloop.
         Selecting supplier address                                     *
      select single * from tvko into wa_tvko where vkorg = compcode.
      append wa_tvko to gt_tvko.
      if wa_tvko-vkorg = '2014'.
        stdtext = 'Z_2014_SOFTEX'.
      elseif wa_tvko-vkorg = '2006'.
        stdtext = 'Z_2006_SOFTEX'.
      else.
        stdtext = wa_tvko-txnam_adr.
      endif.
      select lifnr
             name1
             name2
             ort01
             ort02
             pfach
             stras
             regio from lfa1 into table gt_addr
             where lifnr eq vendor  .
         Selecting sez address                                         *
    SELECT SINGLE adrnr FROM t001 INTO l_adrnr WHERE bukrs EQ compcode.
    SELECT name1
          name2
          city1
          city2
          post_code1
          post_code2
          street
          house_num1
          FROM adrc INTO TABLE gt_addr_info
          WHERE addrnumber = l_adrnr.
         Information for designation                                    *
      select  * from zmm_vat_sign into table it_desig where company = compcode
         Call Function module SSF_FUNCTION_MODULE_NAME                *
      call function 'SSF_FUNCTION_MODULE_NAME'
        exporting
          formname                 = 'ZMM_VAT_EX_CERT'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
       importing
         fm_name                  = fm_name
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 2
      OTHERS                   = 3
      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 module fm_name                                  *
      call function fm_name
        exporting
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
          doc_num                    = sl_no
          quarter                    = w_quarter
          date                       = s_date-high
          sumtotal                   = sumtotal
          close_date                = close_date
          fiscal_year              = fiscal_year
          ca_quarter             = q
          text_name             = stdtext
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
        tables
          itab                       = gt_item
          it_address                 = gt_addr
          it_infoaddress              = gt_addr_info
          it_designation             = it_desig
          it_tvko                   = gt_tvko
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.

  • Getting "Cannot Insert Object" message while attaching .pdf file to excel spreadsheet.

    While I am trying to attach an adobe (.pdf) file in excel spreadsheet I am getting message as “Cannot Insert Object”.
    I am following the below mentioned steps and getting message as “Cannot Insert Object”.
    Open the adobe (.pdf) file from IE browser.
    While saving the adobe file on local machine it gives warning as “This document does not allow you to save any changes you have made to it unless you are using Adobe Acrobat 9, Pro 9 or Pro Extended 9.  You will only be saving a copy of the original document.  Do you want to continue?” On pressing "OK" it successfully saves the file on my local machine.
    While I Tried to attach the saved adobe file in a spreadsheet of excel it gives message as “Cannot Insert Object”.
    Does any one have any thoughts at all as to how to solve this?

    Deepika,
    The alert dialog your screen shot depicts will only display if there is some kind of form annotation present in a PDF that is not "Reader Enabled".
    Look closer at your 'final' PDF.
    A PDF, not "Reader Enabled", that contains any form annotations will, when opened by Adobe Reader,
    result in the alert dialog that you mention. A "hard wired" default.
    Note that the forms document message bar can be "off" by a selection in Adobe Reader / Acrobat Preferences.
    Select the 'Forms' category. Select "Always hide forms document message bar".
    Be well...

  • I cannot insert a graphic image in a new composition: win 7, tb 24

    At times when composing a new e-mail I cannot insert a graphic image in the message. I have tried both the Insert button and the Insert icon. This does not happen all the time; but, when it does happen I can't seem to make it work. My system is a Win 7 with Thunderbird 24.3.0.5. I have tried inserting different graphic images and have tried all combinations in the Image Properties pop-up window.
    I have closed and reopened Thunderbird. I have restarted my system. I have closed all windows except Thunderbird. Nothing helps. Help! Thank you, Bill Gray

    Bill Gray here again. I find that if I open another Write window, then copy/paste my entire e-mail from the initial window -- I can insert graphics into the new window.
    What happens in Thunderbird to make this happen? This has happened a number of times. But, at least now I know that I can open a new Write window and get around the problem. Yet, I am still stuck with the nagging question: Why does this happen?
    Thank you and God bless, Bill Gray

  • BizTalk 2006 Event Log Warnings - Cannot insert duplicate key row in object 'dta_MessageFieldValues' with unique index 'IX_MessageFieldValues'.

    We have been seeing the following 'warnings' in the event log of our BizTalk machine since upgrading to BTS 2006. They seem to occur randomly 6 or 8 times per day.
    Does anyone know what this means and what needs to be done to clear it up? we have only one BizTalk server which is running on only one machine.
    I am new to BizTalk, so I am unable to find how many tracking host instances running for BizTalk server. Also, can you please let me know that we can configure only one instance for one server/machine?
    Source: BAM EventBus Service
    Event: 5
    Warning Details: Execute batch error. Exception information: TDDS failed to batch execution of streams. SQLServer: bizprod, Database: BizTalkDTADb.Cannot insert duplicate key row in object 'dta_MessageFieldValues'
    with unique index 'IX_MessageFieldValues'. The statement has been terminated..

    Other than ensuring that there exists a separate and single tracking host instance, you're getting an error about duplicate keys.. which implies that you're trying to Create a BAM Activity twice with the same data.
    I suggest you have a in-depth examination of the BAM (TPE or API) associated with the orchestration. In TPE ensure that the first binding you select is the "Instance Id" or "Message Id" before going ahead to map the ports or others.
    Regards.

  • Sharepoint 2010 - Cannot make field Required in Add New Item form.

    I made a fleld Required by making the proper selection in List Settings > Editing the column.  It now shows as required when I edit an existing record in the list, but is not required when adding a new item.  Why does the setting not apply
    to the Add New Item form?  How can I make it apply/required?
    btw, there are no content types associated with the list.

    Hi  ,
    According to your description, my understanding is that you cannot make field required in the list new form.
    For my test, I created a custom list , added a non-required field and added some records. Then I made the field required. But it worked fine as expected both in existing records and  in Add New Item
    form.
    Do you have some customization in your list new form?
    You can go to your list -> Customize Form under  list tab, then the new form will be opened in the InfoPath. In the InfoPath, right click the field and select Text Box Properties, make sure “Cannot
    be blank”  has been checked.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Java.sql.SQLException: ORA-01400: cannot insert NULL into ("SYSTEM"."DESCRIPTION"."TYPE")

    insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('','','',41)
    java.sql.SQLException: ORA-01400: cannot insert NULL into ("SYSTEM"."DESCRIPTION"."TYPE")
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:305)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:272)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:623)
    at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:112)
    at oracle.jdbc.driver.T4CStatement.execute_for_rows(T4CStatement.java:474)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1028)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1125)
    at com.event.struts.InsertDetails.doPost(InsertDetails.java:78)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Unknown Source
    and i my
    Action class is
    public class InsertDetails extends HttpServlet{
    protected void doPost(HttpServletRequest req, HttpServletResponse resp)
    throws ServletException, IOException {
    // TODO Auto-generated method stub
    Connection conn = null;
    try{
    List list = (List) req.getSession().getAttribute("listbean");
    InputBean ib = (InputBean) list.get(0);
    InputBean ib1 = (InputBean) list.get(1);
    InputBean ib2 = (InputBean) list.get(2);
    InputBean ib3 = (InputBean) list.get(3);
    InputBean ib4 = (InputBean) list.get(4);
    InputBean ib5 = (InputBean) list.get(5);
    InputBean ib6 = (InputBean) list.get(6);
    InputBean ib7 = (InputBean) list.get(7);
    conn = ConnectionUtils.getConnection();
    Statement stmt = conn.createStatement();
    String sql1 = "select seq.nextval from DUAL";
    ResultSet rs1 = stmt.executeQuery(sql1);
    rs1.next();
    int event_id = rs1.getInt(1);
    //Advanced and general info
    String sql2 = "insert into EVENT_INFO (EVENT_ID,EVENT_NAME,SHORT_NAME,EVENT_START_DATE,EVENT_END_DATE,EVENT_START_TIME,EVENT_END_TIME,event_LOCATION,ADDRESS1,ADDRESS2,CITY,STATE,ZIP_CODE,COUNTRY,event_COMMENT,EVENT_OVERVIEW,EXTRA1,EXTRA2,MEMBERSHIP_OPTION,EXTRA3,EXTRA4,EXTRA5,KID,TEEN,ADULT,SENIOR,SENILE,EVENT_TYPE1,EVENT_TYPE2,DETAILED_DESCRIPTION,IS_DETAILED_DESCRIPTION_HTML,ADDITIONAL_URL,BYPASS_INFORMATION_PAGE,CANCELLATION_POLICY,ADDTIONAL_INFO) values("+event_id+",'"+ib.getName()+"','"+ib.getShortname()+"','"+ib.getStartdate()+
    "','"+ib.getEnddate()+"','"+ib.getStarttime()+"','"+ib.getEndtime()+"','"+ib.getLocation()+"','"+ib.getAddress1()+"','"+ib.getAddress2()+"','"+
    ib.getCity()+"','"+ib.getState()+"','"+ib.getZip()+"','"+ib.getCountry()+"','"+ib.getComment()+"','"+ib.getTextarea()+"','"+ib.getExtra1()+"','"+
    ib.getExtra2()+"','"+ib.getExtra3()+"','"+ib.getExtra4()+"','"+ib.getExtra5()+"','"+ib.getExtra6()+"','"+ib.getExtra7()+"','"+ib.getExtra8()+"','"+
    ib.getExtra9()+"','"+ib.getExtra10()+"','"+ib.getExtra11()+"','"+ib.getExtra12()+"','"+ib.getExtra13()+"','"+ib1.getTextarea()+"','"+ib1.getExtra1()+"','"+
    ib1.getName()+"','"+ib1.getExtra2()+"','"+ib2.getCancellation_policy()+"','"+ib2.getTextarea()+"')";
    stmt.executeQuery(sql2);
    //Description
    List list1 = (List) ib2.getList();
    DescriptionBean db = (DescriptionBean) list1.get(0);
    DescriptionBean db1 = (DescriptionBean) list1.get(1);
    DescriptionBean db2 = (DescriptionBean) list1.get(2);
    DescriptionBean db3 = (DescriptionBean) list1.get(3);
    DescriptionBean db4 = (DescriptionBean) list1.get(4);
    DescriptionBean db5 = (DescriptionBean) list1.get(5);
    DescriptionBean db6 = (DescriptionBean) list1.get(6);
    if(db.getDescription()!=" "){
    String s1 = "insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('"+db.getDescription()+"','"+db.getTextarea()+"','"+db.getHtmlbutton()+"',"+event_id+")";
    stmt.executeQuery(s1);
    if(db1.getDescription()!=" "){
    String s2 = "insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('"+db1.getDescription()+"','"+db1.getTextarea()+"','"+db1.getHtmlbutton()+"',"+event_id+")";
    stmt.executeQuery(s2);
    if(db2.getDescription()!=" "){
    String s3 = "insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('"+db2.getDescription()+"','"+db2.getTextarea()+"','"+db2.getHtmlbutton()+"',"+event_id+")";
    System.out.println(s3);
    stmt.executeQuery(s3);
    if(db3.getDescription()!=" "){
    String s4 = "insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('"+db3.getDescription()+"','"+db3.getTextarea()+"','"+db3.getHtmlbutton()+"',"+event_id+")";
    stmt.executeQuery(s4);
    if(db4.getDescription()!=" "){
    String s5 = "insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('"+db4.getDescription()+"','"+db4.getTextarea()+"','"+db4.getHtmlbutton()+"',"+event_id+")";
    stmt.executeQuery(s5);
    if(db5.getDescription()!=" "){
    String s6 = "insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('"+db5.getDescription()+"','"+db5.getTextarea()+"','"+db5.getHtmlbutton()+"',"+event_id+")";
    stmt.executeQuery(s6);
    if(db6.getDescription()!=" "){
    String s7 = "insert into DESCRIPTION (TYPE,DESCRIPTION,IS_HTML,EVENT_ID) values('"+db6.getDescription()+"','"+db6.getTextarea()+"','"+db6.getHtmlbutton()+"',"+event_id+")";
    stmt.executeQuery(s7);
    //Activity
    String sql3 = "insert into ACTIVITY (ACTIVITY_NAME,ACTIVITY_START_DATE,ACTIVITY_END_DATE,ACTIVITY_START_TIME,ACTIVITY_END_TIME,TYPE,CAPACITY,EVENT_ID) values('"+ib3.getName()+"','"+ib3.getStartdate()+"','"+
    ib3.getEnddate()+"','"+ib3.getStarttime()+"','"+ib.getEndtime()+"','"+ib3.getExtra1()+"',"+event_id+")";
    stmt.executeQuery(sql3);
    i put condition for null .But if i dont fill the fields,even then the executeQuery is executing without checking the condition.
    wht is the problem
    what i want to change in my code.

    1. Use code tags when you post code.
    2. Use prepared statements.
    3. If you have a field that requires a non-null entry then you must provide a non-null value. And for Oracle that means non-empty as well.

  • Autconfig error : ORA-01400: cannot insert NULL into ("APPLSYS"."FND_NODES"."NODE_NAME")

    Good day,
    I am running EBS 11.5.10  with DB 10.2.0.4. I applied patch 7429271 following the steps in  Doc Id. 233044.1.
    After restarting the application, I got a "node id does not exist for the current application" when the forms started.
    After purging fnd nodes (exec fnd_conc_clone.setup_clean) I ran autoconfig successfully on the dbtier but got the error below in the apps tier.
    I also noticed that the contents of my dbc file has been erased and replaced with the template data (all values are default). I tried restoring it but it just got over written again with default data.
    Hope my explanation was clear enough.
    Any suggestions?
    ---error from adconfig.log-----------
    Unique constraint error (00001) is OK if key already exists
    java.sql.SQLException: ORA-01400: cannot insert NULL into ("APPLSYS"."FND_NODES"."NODE_NAME")
    ORA-06512: at "APPS.FND_CONCURRENT", line 1504
    ORA-06512: at "APPS.FND_APP_SERVER_PKG", line 163
    ORA-06512: at line 1
    - Database error modifying the server

    Logs after autoconfig and services started - not connection attempted to the application yet.
    -----access log--------
    mobay.pahq.dom - - [25/Oct/2013:13:28:59 -0500] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=XmlSvcsGrp&port=19000 HTTP/1.1" 200 15 0
    mobay.pahq.dom - - [25/Oct/2013:13:28:59 -0500] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=DiscoGroup&port=17000 HTTP/1.1" 200 15 0
    mobay.pahq.dom - - [25/Oct/2013:13:28:59 -0500] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=OACoreGroup&port=16000 HTTP/1.1" 200 15 0
    ----error log--------
    [Fri Oct 25 13:28:59 2013] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    ----error log_pls----
    [Fri Oct 25 13:29:00 2013] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    Logs after a connection attempt to the application
    -----access log-----
    mobay.pahq.dom - - [25/Oct/2013:13:28:59 -0500] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=XmlSvcsGrp&port=19000 HTTP/1.1" 200 15 0
    mobay.pahq.dom - - [25/Oct/2013:13:28:59 -0500] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=DiscoGroup&port=17000 HTTP/1.1" 200 15 0
    mobay.pahq.dom - - [25/Oct/2013:13:28:59 -0500] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=OACoreGroup&port=16000 HTTP/1.1" 200 15 0
    192.168.50.80 - - [25/Oct/2013:13:34:32 -0500] "GET / HTTP/1.1" 200 2589 0
    192.168.50.80 - - [25/Oct/2013:13:34:33 -0500] "GET /apptitle.html HTTP/1.1" 200 1015 0
    192.168.50.80 - - [25/Oct/2013:13:34:33 -0500] "GET /applist.html HTTP/1.1" 200 1602 0
    192.168.50.80 - - [25/Oct/2013:13:34:33 -0500] "GET /appdet.html HTTP/1.1" 200 1009 0
    192.168.50.80 - - [25/Oct/2013:13:34:33 -0500] "GET /appsmed3.gif HTTP/1.1" 200 1981 0
    192.168.50.80 - - [25/Oct/2013:13:34:36 -0500] "GET /aplogon.html HTTP/1.1" 200 1953 0
    192.168.50.80 - - [25/Oct/2013:13:34:38 -0500] "GET /OA_HTML/US/ICXINDEX_PROD_mobay.htm HTTP/1.1" 200 417 0
    192.168.50.80 - - [25/Oct/2013:13:34:38 -0500] "GET /OA_HTML/AppsLocalLogin.jsp HTTP/1.1" 200 411 0
    **the error logs remain unchanged.
    Regards,
    Shridath.

Maybe you are looking for

  • How to delete photos from synced albums?

    Hi, after a holiday I sync all photos taken with my iPad 1. I want to delete bad photos and resync them with my PC. But I can't delete photos from my iPad/iPhone. Is there any possibility to delete single photos? Thanks

  • When I try to download a Status 500 message appears

    I wish to download music and course work from http://www.innerspace.org/oxford/downloads/ I am unsuccessful and get a http/status 500 message. Can you help as I need to do this. Thanks

  • Query regarding meta chain in SAP BI

    Hi can any body solve the problem on this Meta chain in SAP BI.. There is a meta chain which holds three process chains say N1,N2,N3. in a sequential order. Now here as soon as the meta chain is triggered the process chain N1 is executed properly and

  • Tabs and JSTL?

    Hi all ! Im trying to develop a nice app that should show dates for a certain day and I need to use tabs to show the different deparments and their dates... Can that be possible using JSTL? Wich is the best approach? Any tut? Thanks a lot ! Juan Ma

  • How to prevent downgrading of the app in meta package using package versioning feature of package maker tool?

    Hi, Created  an installer i.e, meta package using package maker tool. I want  to prevent downgrading of the application or package on the target/installed volume.  Problem is, if there is a newer version of app and when I try to install any older ver