[SOLVED]handy compress function similar to extract in Core Utilities?

Hi!
I was wondering if there is a similar, easy, compress-function to be added to .basrc, like the the extract function at:
https://wiki.archlinux.org/index.php/Core_Utilities
Would be cool to just write:
compress archive.tar.gz [files]
compress archive.zip [files]
Maybe I should learn some bash scripting?
Last edited by penguin (2011-02-24 17:12:26)

thayer wrote:# roll - archive wrapper
# usage: roll <foo.ext> ./foo ./bar
roll()
FILE=$1
case $FILE in
*.tar.bz2) shift && tar cjf $FILE $* ;;
*.tar.gz) shift && tar czf $FILE $* ;;
*.tgz) shift && tar czf $FILE $* ;;
*.zip) shift && zip $FILE $* ;;
*.rar) shift && rar $FILE $* ;;
*) echo "'$1' is not a valid archive type"
esac
Yes, this was what I had in mind, thanks, I'll try it out.
falconindy wrote:compress is a real thing. It uses LZW compression.
Oh, yes, you're quite right, I did not think of that.

Similar Messages

  • Can we implement the functionality similar to ROW_NUMBER() in generic/common way for all databases using SQL ?

    In my project,i am allowing user to select database of his choice from given options & i need to write queries considering
    all these optional databases. So as per my one of requirement,is there any way to achieve generic functionality similar to ROW_NUMBER() in MSSQL ?

    First run this and check the db version
    SELECT @@VERSION
    EXEC sp_dbcmptlevel 'db name'
    If version is above 2012 and compatibility level is above 80 ROW_NUMBER will work.
    Otherwise you need to use this
    http://sqlserverplanet.com/sql-2000/simulate-row_number-in-sql-2000
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Function Module not extracting records when InfoPackaged is executed

    Hi,
    I'm using a Function module for extracting data. The DataSource is working fine in RSA3 with a selection criteria. But when i schedule the infopackage with the same selections in the data selection tab, Its not getting me any records into BW. In the Details Tab i get the message "Error occurred in the data selection" . I guess there is a problem with the data selection. Pasted below is the code i'm using for extraction. Can anyone please let me know if there is any issue with the code.
    Also how do we pass on the value of I_MAXSIZE into the function module, the remaining parameters get the values from BW. And can anyone please explain me the concept of the "s_counter_datapakid" and when it should be incremented and where it should be located in the code?
    Thanks,
    AM
    Auxiliary Selection criteria structure
      DATA: l_s_select TYPE srsc_s_select.
    Maximum number of lines for DB table
      STATICS: s_s_if TYPE srsc_s_if_simple,
    counter
              s_counter_datapakid LIKE sy-tabix,
    cursor
              s_cursor TYPE cursor.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
      IF i_initflag = sbiwa_c_flag_on.
    Initialization: check input parameters
                    buffer input parameters
                    prepare data selection
    Check DataSource validity
        CASE i_dsource.
          WHEN 'XXXXX'.
          WHEN OTHERS.
    this is a typical log call. Please write every error message like this
            log_write 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                      i_dsource   "message variable 1
                      ' '.                 "message variable 2
            RAISE error_passed_to_mess_handler.
        ENDCASE.
        APPEND LINES OF i_t_select TO s_s_if-t_select.
    Fill parameter buffer for data extraction calls
        s_s_if-requnr    = i_requnr.
        s_s_if-dsource = i_dsource.
        s_s_if-maxsize   = i_maxsize.
    Fill field list table for an optimized select statement
    (in case that there is no 1:1 relation between InfoSource fields
    and database table fields this may be far from beeing trivial)
        APPEND LINES OF i_t_fields TO s_s_if-t_fields.
      ELSE.
    Data transfer: First Call      OPEN CURSOR + FETCH
                   Following Calls FETCH only
    First data package -> OPEN CURSOR
        IF s_counter_datapakid = 0.
          g_first = 'X'.
    Fill range tables BW will only pass down simple selection criteria
    of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'BWLVS'.
            IF l_s_select-low <> '101' AND
               l_s_select-low <> '109'.
              RAISE invalid_movement_type.
            ELSE.
              MOVE-CORRESPONDING l_s_select TO r_im_bwlvs.
              APPEND r_im_bwlvs.
            ENDIF.
          ENDLOOP.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'BEGDA'.
            MOVE-CORRESPONDING l_s_select TO r_im_begda.
            r_im_begda-low0(4) = l_s_select-low6(4).
            r_im_begda-low4(2) = l_s_select-low0(2).
            r_im_begda-low6(2) = l_s_select-low3(2).
            APPEND r_im_begda.
          ENDLOOP.
          LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'ENDDA'.
            MOVE-CORRESPONDING l_s_select TO r_im_endda.
            r_im_endda-low0(4) = l_s_select-low6(4).
            r_im_endda-low4(2) = l_s_select-low0(2).
            r_im_endda-low6(2) = l_s_select-low3(2).
            APPEND r_im_endda.
          ENDLOOP.
    *Select from table ltak into internal table i_ltak the following fields.
    *Condition: where bwlvs = import bwlvs & endat is >= import begda and
    <= import endda.
          READ TABLE r_im_begda INDEX 1.
          IF sy-subrc NE 0.
            RAISE blank_date_invalid.
          ELSE.
            IF r_im_begda-low IS INITIAL.
              RAISE blank_date_invalid.
            ENDIF.
          ENDIF.
          READ TABLE r_im_endda INDEX 1.
          IF sy-subrc NE 0.
            RAISE blank_date_invalid.
          ELSE.
            IF r_im_endda-low IS INITIAL.
              RAISE blank_date_invalid.
            ENDIF.
          ENDIF.
          IF NOT r_im_endda-low IS INITIAL
            AND r_im_begda-low > r_im_endda-low.
            RAISE invalid_date.
          ENDIF.
          r_endat-sign = 'I'.
          r_endat-option = 'BT'.
          r_endat-low = r_im_begda-low.
          r_endat-high = r_im_endda-low.
          APPEND r_endat.
    *-- Get data from the tables
          PERFORM get_data.
    *-- Populate the extract structure with data
          PERFORM write_data.
    *-- Fill Export able with the extracted data
          e_t_data[] = i_zbipicprd2[].
        ENDIF.                             "First data package ?
        IF g_first EQ 'X'.
          CLEAR g_first.
        ELSE.
    *-- This is important to prevent endless loop.
          RAISE no_more_data.
        ENDIF.
    s_counter_datapakid = s_counter_datapakid + 1.
      ENDIF.              "Initialization mode or data extraction ?
    ENDFUNCTION.

    The load is running successfully but its not fetching any records into BW.
    In the Status tab, Step by Step Analysis the following three steps are red:
    Does selectable data exist in the source system? (Red)
    Data selection successfully started ? (Red)
    Data selection successfully finished ? (Red)
    and the below is the Analysis
    Diagnosis
        The data request was a full update.
        o   In this case, the corresponding table in the source system does not
                contain any data.
        o   System Response
                Info IDoc received with status 8.
                Procedure
    Check the data basis in the source system.
    But i have data in R/3 and i'm able to extract it using RSA3

  • Help with compress function--file sizes not substantially reduced

    I've tried to use the compress function (right click "compress" or Finder/File/Compress) a few times on files from a variety of different programs. While this results in creating a zip file, the file size is not substantially reduced (e.g., from 43.4 MB to 42.9 MB). Is there a way to change how much a file is compressed?
    Thanks in advance for your help.
    Eric

    Not all material is very compressible. Text files and word processor documents usually compress very well. Photos and movies don't compress much if at all due to the nature of their structure (in some cases, using a general-purpose compressor can actually make a file larger). So it will depend on what it is you're compressing.

  • Creating BW Function module to extract R3 Function module data.

    Could you tell me how to create a BW Function Module to Extract data from  R/3 Function module?.
    Also, the BW function module needs to pass a date/time filter to R/3 function module basis which the R/3 function module passes the date/time restricted data to BW function module.
    Thanks,
    Gautam

    You will have to create a function module in R/3 and then call the same in BW using the RFC call function option.
    Please do not raise separate threads for each question - you have asked the same question in another post of yours..
    bw extraction using function module
    http://tinyurl.com/lwhtk8
    this will give you an idea on how you can achieve this.

  • Does Numbers have a Data Analysis function similar to "Goal Seek" in Excel?

    Does Apple's Numbers application have a Data Analysis function similar to the "Goal Seek" function in Excel?

    No, Numbers doesn't have Goal Seek or anything like it.
    You can set up Slider controls to facilitate playing with key variables in your expressions, but Numbers doesn't have any capability to make the adjustments itself.
    Jerry

  • Functionality similar to the Performance assistant box.

    Hello All,
    I am searching for a functionality similar to the Performance assistant box , with the links to go to other pages /transactions/ websites etc. I have to give a popup wit information when the user clicks on a button. This box should be similar to the performance assistant which we get on pressing F1 on any field.
    Do we have any such functionality ?
    Thanks,
    Ketan Joglekar

    Hi Ketan,
    If you are creating a module pool,
    U can use the Process On-Help event of Screens.
    Like Proces on-Value is process on F4, Process on-Help is prrocess on F1.
    U can code a module which will display a document created in SE61 which is same as the one u look at in Performance assistant.
    Within the module, u can call a function module that displays this document.
    So ur code will look similar to this:
    PROCESS ON HELP-REQUEST.
    field <field-name> module <module-name>.
    within the module call FM 'HELP_OBJECT_SHOW'.
    Pass DOKCLASS as TX (General Text)
    DOKLANGU as sy-langu (logon language)
    DOKNAME -> the name of document u created in SE61.
    When u hit F1 on the field <field-name>, the document will be displayed
    Regards,
    Mahesh.

  • Simple String Compression Functions

    Hi all !
    I need two simple String compression functions, like
    String compress(String what)
    and
    String decompress(String what)
    myString.equals(decompress(compress(myString)))
    should result in true.
    Primarily I want to encode some plain text Strings so they are not too easy to read, and compression would be a nice feature here.
    I already tried the util.zip package, but that one seems to need streams, I simply need Strings.
    Any ideas ??
    thx
    Skippy

    It does not do any compression, in fact it does
    expansion to better encrypt the string (about 50%).How does that work? You want encryption to
    decrease entropy.Why in the world do you say that, pjt33? What a very odd statement indeed. I sure hope you don't work in security, or I do hope you work in security if I'm a bad guy, or a competitor.
    Let's say you had a 6-character string you wanted to encrypt.
    Well, if you didn't increase the entropy, any 6-character plaintext string would have a 6-character encoded equivalent. And if you decreased entropy (e.g. coding the most commonly used words to shorter strings,) it gets even easier to decrypt.
    Presumably there would be no hash collisions, after all, you want this to be reversible.
    Hash collisions decrease entropy too, and, by doing so, make it easier to find a plaintext string that happens to hash to a certain value. This is a Bad Thing.
    Now, to decode this, the Bad Guy only has to consider the set of 6-character strings and their hash values. You could even precalculate all of the common dictionary words, and everything with common letters and punctuation, making decryption virtually instantaneous. Especially if you had decreased the entropy in the signal, making fewer things I had to try.
    But somebody who increased the entropy of their signal by adding random bits and increasing the encrypted size of the message to, say, 64 characters, would make it a lot harder to decrypt.
    The ideal encryption system is pure noise; pure randomized entropy. An indecipherable wall of 0 and 1 seemingly generated at random. Statistical methods can't be used against it; nothing can be deciphered from it; it's as decipherable and meaningless as radio hiss. Now that's encryption!

  • Function Module - Generic Extraction : Not able to solve

    Hi Guys,
           I have created a function module. The function module is working well. But when i start the extraction. It does not stops. It starts loading same data package again and again. It is becoming an endless loop. I have ot ask basis person to kill that job. He inturn has to restart SAP r/3 server. This has become a big issue. Guys please help I am attaching the code for your reference
    Example: DataSource for table SFLIGHT
    TABLES: YSALES,
           MBEW.
      DATA: BEGIN OF I_YSALES OCCURS 0.
              INCLUDE STRUCTURE YSALES.
      DATA: END  OF I_YSALES.
      DATA: BEGIN OF I_MBEW OCCURS 0.
              INCLUDE STRUCTURE MBEW.
      DATA: END OF I_MBEW.
    Auxiliary Selection criteria structure
      DATA: L_S_SELECT TYPE SRSC_S_SELECT.
    Maximum number of lines for DB table
      STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
    counter
              S_COUNTER_DATAPAKID LIKE SY-TABIX,
    cursor
              S_CURSOR TYPE CURSOR,
              S_CURSOR1 TYPE CURSOR.
    Select ranges
      RANGES: L_R_ZYEAR  FOR YSALES-ZYEAR,
              L_R_ZMONTH  FOR YSALES-ZMONTH.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
      IF I_INITFLAG = SBIWA_C_FLAG_ON.
    Initialization: check input parameters
                    buffer input parameters
                    prepare data selection
    Check DataSource validity
       CASE I_DSOURCE.
         WHEN '0SAPI_ysales_SIMPLE'.
         WHEN OTHERS.
           IF 1 = 2. MESSAGE E009(R3). ENDIF.
    this is a typical log call. Please write every error message like
    *this
           LOG_WRITE 'E'                  "message type
                     'R3'                 "message class
                     '009'                "message number
                     I_DSOURCE   "message variable 1
                     ' '.                 "message variable 2
           RAISE ERROR_PASSED_TO_MESS_HANDLER.
       ENDCASE.
       APPEND LINES OF I_T_SELECT TO S_S_IF-T_SELECT.
    Fill parameter buffer for data extraction calls
        S_S_IF-REQUNR    = I_REQUNR.
        S_S_IF-DSOURCE   = I_DSOURCE.
        S_S_IF-MAXSIZE   = I_MAXSIZE.
    Fill field list table for an optimized select statement
    (in case that there is no 1:1 relation between InfoSource fields
    and database table fields this may be far from beeing trivial)
        APPEND LINES OF I_T_FIELDS TO S_S_IF-T_FIELDS.
      ELSE.                 "Initialization mode or data extraction ?
    Data transfer: First Call      OPEN CURSOR + FETCH
                   Following Calls FETCH only
    First data package -> OPEN CURSOR
       IF S_COUNTER_DATAPAKID = 0.
    Fill range tables BW will only pass down simple selection criteria
    of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
        LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'ZYEAR'.
          MOVE-CORRESPONDING L_S_SELECT TO L_R_ZYEAR.
          APPEND L_R_ZYEAR.
        ENDLOOP.
        LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'ZMONTH'.
          MOVE-CORRESPONDING L_S_SELECT TO L_R_ZMONTH.
          APPEND L_R_ZMONTH.
        ENDLOOP.
    Determine number of database records to be read per FETCH statement
    from input parameter I_MAXSIZE. If there is a one to one relation
    between DataSource table lines and database entries, this is trivial.
    In other cases, it may be impossible and some estimated value has to
    be determined.
         OPEN CURSOR WITH HOLD S_CURSOR FOR
         SELECT (S_S_IF-T_FIELDS)
            FROM YSALES .
         OPEN CURSOR WITH HOLD S_CURSOR1 FOR
          SELECT (S_S_IF-T_FIELDS)
          FROM MBEW WHERE YSALES~MATNR
              AND BWKEY = YSALES~WERKS.
        select  BUKRS
                ZYEAR
                ZMONTH
                WERKS
                MATNR
                SLSCAT
                KNDNR
                SPART
                MATKL
                MENGE
                DMBTR
                VV702
                VV703
                VVADS
                VV704
                VV731
                INTO
                CORRESPONDING FIELDS OF table I_YSALES
                PACKAGE SIZE S_S_IF-MAXSIZE
                FROM YSALES
                WHERE ZYEAR IN L_R_ZYEAR
                AND   ZMONTH IN L_R_ZMONTH.
       ENDSELECT.
            WHERE MATNR IN L_R_MATNR.
            WHERE WERKS = WERKS
            AND   MATNR = MATNR
            AND   KNDNR = KNDNR
            AND   SPART = SPART.
        IF SY-SUBRC = 0.
          SORT I_YSALES BY WERKS MATNR .
        ENDIF.
        IF NOT I_YSALES[] IS INITIAL.
          SELECT MATNR
                 BWKEY
                 BWTAR
                 LBKUM
                 SALK3
                 BKLAS
                 INTO CORRESPONDING FIELDS OF TABLE I_MBEW
                 PACKAGE SIZE S_S_IF-MAXSIZE
                 FROM MBEW
                 FOR ALL ENTRIES IN I_YSALES
                 WHERE MATNR = I_YSALES-MATNR
                 AND   BWKEY = I_YSALES-WERKS.
          ENDSELECT.
        ENDIF.
        LOOP AT I_YSALES .
          MOVE-CORRESPONDING I_YSALES TO E_T_DATA.
          READ TABLE I_MBEW WITH KEY MATNR = I_YSALES-MATNR
                                     BWKEY = I_YSALES-WERKS.
          IF SY-SUBRC = 0.
            MOVE-CORRESPONDING I_MBEW TO E_T_DATA.
          ENDIF.
          APPEND E_T_DATA.
        ENDLOOP.
       IF SY-SUBRC <> 0.
         CLOSE CURSOR S_CURSOR.
          RAISE NO_MORE_DATA.
        ENDIF.
       ENDIF.                             "First data package ?
    Fetch records into interface table.
      named E_T_'Name of extract structure'.
       FETCH NEXT CURSOR S_CURSOR
                  APPENDING CORRESPONDING FIELDS
                  OF TABLE E_T_DATA
                  PACKAGE SIZE S_S_IF-MAXSIZE.
        S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
      ENDIF.              "Initialization mode or data extraction ?
    ENDFUNCTION.

    Hi Baljit,
    This is a dangerous way of extracting your data.
    I am not surprised that it has become an endless loop.
    You have to use the cursor and the fetch statement and after the fetch statement you have to use a subreturncode
    to wonder if the fetch statement did get any data.
    if not use the folowing statements.
    close cursor s_cursor.
    raise no_more_data.
    In your situation the select statement will start every time from the first record in the table ysales because you don't use the cursor. By using the cursor and the fetch statement, the fetch statement will start from the cursor everytime it calls the function module.
    I guess this function module is part of an endless loop and will be exited at the moment that the function module returns with raise no_more_data. (in other words, the cursor is at the last record of the table ysales, so no more records will be found)
    Hope this will help
    Maarten

  • Calender functionality similar to outlook.

    I am developing a calendar functionality in my mailing application. This calender shall solve the purpose of outlook express calendar, to some extent.
    I've designed similar to http://admin.jsn-server5.com/jsp-examples/cal/cal1.jsp?name=user&email=[email protected]&action=Submit
    How to store the information given by user in the task description. Can I use files (java.io.) I would not like to touch the database (mysql on linux).
    Is there any way to store data other than database?
    I have gone through forum with such questions, and got to know that I can user xml format or using Properties. But couldnt get the proper guidance.
    Please suggest.
    passion_for_java

    sorry, probably i have used the word 'design' by mistake.
    i made user to set the tasks and tasks are stored in files. now say if the user sets a task on 1st jan 07 10 am. the user should be reminded via mail (like birthday reminder mails) about the event/task that he set.
    I am not known as to how can I develop code to identify the date and time set on a task and send a reminder mail to user.
    I am using this feature in my webmail application and that made me to post my question here.
    If i am not in the right area, I regret.

  • [SOLVED] Some layout functions not working on Awesome 3.5

    Hi there,
    Anyone else have this problem with the new awesome release? Some functions just doesn't work here, like awful.tag.incmwfact, awful.tag.incnmaster and awful.mouse.client.resize, those are the ones I noticed, tested with the default rc.lua and it just doesn't work, searched the release notes and nothing too.
    SOLVED
    Don't know how it got working, probably I wasn't testing the right way
    Last edited by labp (2013-01-01 04:08:59)

    I must have done something stupid here, its working now :x, delete it please, sry

  • Jobs to run the function modules to extract the generic extarctors

    Gurus,
    I have a Datasource 'ZCMS_PP_TRAN' with extract structure 'ZBW_ST_CMSD_PP'. The extract structure is populated using the function module Z_BW_GET_CMSD_PP.
    But how do I schedule this FM or in general, are they run using std programs?
    Thanks,
    Simmi

    Hi Simmi,
       what ever it may be the DS(i mean Business Content DS, Generic DS).... these will extract the Data using Dynamic Function Calls(not always). Comming to Generic DS using FM, this will be called using Dynamic Function Module.
    In RSA3 or while extracting data from BW, you will pass request number, Update Mode, debugging option, selection fields, BW source System ID, DS Name.
    Based on these details system will extract the underlying extract structure and function module(or table/view/infoset).
    No job(Job created from BW while extracting data in the source system BI_requestid) created for Generic DS while extracting data in SAP.
    For Queue Delta, Background job will be created, it will move the data to Delta Queue.
    i will update the thread with related function modules. Try to debugg in RSA3, you could find all the information.
    all the best.
    Nagesh.

  • Auto Replace functionality similar to TOAD

    I've played with Raptor 804 for a few hours now. Only a couple things keeping me from being able to move (comfortably) to Raptor from Toad at this point.
    1) Bind Variables not remembering values if I run queries repetively. Other posts address that issue
    2) The other is Toad's Auto Replace feature. I have huge library built where I can type in a few letters and when I hit the space bar (or other set characters) the characters are replaced with something else. ie...I type "srf" and I get "select a.*, a.rowid from" or I type "hca" and I get the table name "ar.hz_cust_accounts" etc....
    Because I've got so many auto replace keystrokes saved I am able to type out ad-hoc queries in a hurry. I see Raptor has an Accelerators option under Preferences but that doesn't do quite what I want.
    3) Other very nice to have (because of the way I work) is the Named Sql options that is available in Toad. Basically instead of having a bunch of standard queries that I use all the time saved into files, I've got them saved in my Named Sql's in Toad so I can quicly pop them up (with a shortcut keystroke Ctrl-N) and then click on the one similar to the Sql History window. In conjunction with the bind variable functionality listed in item 1, it helps me investigate things very quickly when researching issues.
    Initial results on Raptor look good. I'm looking forward to it improving to the point where I can ditch Toad (which I've lost all faith in).

    1) try the new build it's in there
    2) This will have to wait till 1.1 however I agree for no other reason then fixing my select * form dual.
    3) Would key shortcuts and the ability to manage the snippets work ( again in 1.1)
    -kris

  • Function Module to extract char values for a matl variant

    Experts,
    Looking for a Function Module with which I can extract the Char value for a specific characteristic on my material variant. So, the class type is 300 & I would like to pass this material (variant) as an input in order to retrieve the value for the specific characteristic (which will be unique to this variant)
    Any one, an idea?
    thanks

    Ok, I found what I needed. For everyone's benefit, herez what I found:
    1. every application/object in the SAP side which uses the configuration has a unique Internal Object #. For material variants, Sales Documents, Prodn Ord headers & components, so on so forth.
    2. In the system the fields CUOBF, CUOBJ carry these Internal Obj #'s. For the sake of getting the material variant char & values I found the func module VC_I_GET_CONFIGURATION, where the input could be the Int Obj # from the MARA or the one from VBAP, based on the need.
    Thanks

  • Functional module on extracting character and numeric value

    Dear All,
    I have one file which type is character. It contains alphanumeric values. (Ex. 500G & 7KG etc.)  I want to extract numeric and characteristic values.
    There is no pre-defined no. of digits means actual value may have 5, 6 7.. digits.
    Ex.
    1) Actual Value: 8975G
    Target Value: : 8975
    2) Actual Value: 500KG
    Target Value: 500000
    Is there any standard function are available for this task?
    I really appreciate your input on this.
    Regards,
    Rishit

    there is no such FM you can write simple code..by using REPLACE syntax

Maybe you are looking for

  • JSTreeBrowser

    I4m trying to show my Categories table, which is self-related and have the following structure : CATG_ID - Id of the Category NAME - Name CATG_CATG_ID - Id of the father Well, i had created the app module, and all the needed structures in BC4J, to my

  • Library lost: recovery possible?

    I recently found out that my entire itunes music library had been deleted somehow, nowhere to be found. Is it perhaps possible to "recover" my library back to the computer from my ipod, or will I have to purchase off itunes/burn all my music again? T

  • Single cycle plan with counter in plant maintenance

    Dear Experts, I am creating single cycle plant with performance based with couter reading. 1 I have crated a measuring point with counter in running hrs 2 Created a single cycle plan and given the couter no. there 3 Since i hv given 4000 hrs in plan,

  • Lost Local Netowrk...

    Help, I cant get my Mac back on the local network... I am not sure what I did but my server I turned off yesterday, then rebooted and no longer accepts the IP from my Switch for DHCP. It keeps wanting to put it's own self assigned IP address in. I ca

  • Phoshop Elements 6

    Can I download Photoshop Elements 6 to my new computer running Windows 7?