Equipment(Staus) IE 03------ STATUS, Where this value wuld b stored?

Hi Experts,
Am looking to pull the data of Equipment Status - IE03---->STATUS value, so, pls. let me know that, In which table I hv to look for? Or anz logic I need to write?
thanq.

hi,
check this program for ie03,
this program fetches most of the data for ie03
REPORT ZEQUIP_DISP NO STANDARD PAGE HEADING MESSAGE-ID zext .
Report to fetch equipment list in ie03    *
Requested By :
tables: equi,
        equz,
        iflot,
        iloa,
        eapl,
        crhd.
DATA : BEGIN OF fieldnames OCCURS 0,
       field(32),
       END OF fieldnames.
data : gi_eqkt like eqkt occurs 0 with header line.
data : gi_equi like equi occurs 0 with header line.
data : gi_equz like equz occurs 0 with header line.
data :gi_iflot like iflot occurs 0 with header line.
data :gi_iloa like iloa occurs 0 with header line.
data :gi_crhd like crhd occurs 0 with header line.
data :fi_equz like equz occurs 0 with header line.
*data :gi_iloa like iloa occurs 0 with header line.
data :gi_eqbs like eqbs occurs 0 with header line.
data :gi_fleet like fleet occurs 0 with header line.
data :gi_efhm like efhm occurs 0 with header line.
Data : begin of gi_join occurs 0,
         equnr     like     equi-equnr, "     Equipment Number
         EQTYP     like     equi-eqtyp,"     Equipment category
         cuobj like equi-cuobj,
         swerk like iloa-swerk, " plant maintanace plant
         iloan like iloa-iloan," location
         gsber like iloa-gsber, "business area
       end of gi_join.
Data : begin of gi_final1 occurs 0,
       equnr     like     equi-equnr, "     Equipment Number
       EQTYP     like     equi-eqtyp,"     Equipment category
       ERDAT     like     equi-erdat,"     valid on
       eqktx like eqkt-eqktx, " equipment description
       INBDT LIKE EQUI-INBDT, "start up date
       objty like efhm-objty, "object type
        BEGRU     like     equi-begru,     "AuthorizGroup
        BRGEW     like     equi-brgew,     "Weight
        GEWEI     like     equi-gewei,     "Unit of Weight
        GROES     like     equi-groes, "     Size/dimension
        ANSWT     like     equi-answt, "     AcquistnValue
        waers like     equi-waers, "     Currency Key
        ANSDT     like     equi-ansdt, "     Acquistion date
       HERST     like     equi-herst,  "     Manufacturer
       TYPBZ     like     equi-typbz, "     Model number
       mapar like equz-mapar, "manufacturer part number
       SERGE     like     equi-serge, "     ManufSerialNo.
       HERLD     like     equi-herld, "     ManufCountry
       WARPL     like      equi-warpl, "     Maintenance Plan
       tplnr like iloa-tplnr, " functional location
       HEQUI     like     equz-hequi, "     Superord.Equip.
       tidnr like equz-tidnr, " technical identification number
       submt like equz-submt, " constant type
     ABCKZ     LIKE     ILOA-abckz, "     ABC indic
       EQFNR     LIKE     ILOA-eqfnr, "     Sort field
        ANLNR     LIKE     ILOA-anlnr,"     Asset Number
        iwerk like equz-iwerk, "maintanance planning plant
        ingrp like equz-ingrp, " planner group
         GEWRK     like     equz-gewrk,"     Main WorkCtr
         werk      like     equi-werk,"     Plant for work center
        rbnr like equz-rbnr, " catalog profile
         planv like efhm-planv, "task list usage
         steuf like efhm-steuf, "control key
         EWFORM like efhm-ewform ,"usage value form
      gsber like iloa-gsber, " business area
      swerk like iloa-swerk, " maint plant
      kostl like iloa-kostl, " cost centre
      kokrs like iloa-kokrs, " conrolling area
      werk      like     equi-werk,"     Plant for work center
     end of gi_final1.
SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECTION-SCREEN: SKIP.
SELECT-OPTIONS : p_eqtyp for equi-eqtyp MATCHCODE OBJECT ZMAT.
SELECT-OPTIONS : p_swerk for eapl-swerk.
SELECT-OPTIONS : p_gsber for iloa-gsber.
PARAMETERS: pfname LIKE rlgrap-filename OBLIGATORY.
SELECTION-SCREEN: END OF BLOCK b1.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR pfname.
  PERFORM fetch_file USING pfname.
FORM fetch_file USING pfname.
  CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
       EXPORTING
            static    = 'X'
       CHANGING
            file_name = pfname.
ENDFORM.
START-OF-SELECTION.
PERFORM col_head.
PERFORM FETCH_DATA.
PERFORM download TABLES  fieldnames gi_final1  USING pfname .
FORM FETCH_DATA.
   SELECT A~equnr
          A~EQTYP
          a~cuobj
          C~ILOAN
          C~SWERK
          C~GSBER
         FROM EQUI AS A INNER JOIN
         EQUZ AS B ON
         AEQUNR = BEQUNR
         INNER JOIN ILOA AS C
         ON BILOAN = CILOAN INTO TABLE
         GI_JOIN WHERE EQTYP IN P_EQTYP
         AND SWERK IN P_SWERK
         and GSBER IN P_GSBER.
   sort gi_join by equnr eqtyp.
loop at gi_join.
CALL FUNCTION 'EQUIPMENT_READ'
   EXPORTING
   I_HANDLE             =
   I_LOCK               =
   CHECK_AUTH           = ' '
   I_TCODE              = ' '
     EQUI_NO              = gi_join-equnr
    EQUZ_NO              = '000'
    READING_DATE         = '99991231'
   X_XAKTYP             = ' '
  IMPORTING
    EQUI                 = gi_equi
    EQKT                 = gi_eqkt
    EQUZ                 = gi_equz
    ILOA                 = gi_iloa
    EQBS                 = gi_eqbs
    FLEET                = gi_fleet
    EFHM                 = gi_efhm
EXCEPTIONS
   AUTH_NO_BEGRP        = 1
   AUTH_NO_IWERK        = 2
   AUTH_NO_SWERK        = 3
   EQKT_NOT_FOUND       = 4
   EQUI_NOT_FOUND       = 5
   EQUZ_NOT_FOUND       = 6
   ILOA_NOT_FOUND       = 7
   AUTH_NO_INGRP        = 8
   AUTH_NO_KOSTL        = 9
   ERR_HANDLE           = 10
   LOCK_FAILURE         = 11
   AUTH_NO_BADI         = 12
   OTHERS               = 13
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
      move gi_equi-equnr to gi_final1-equnr.
      move gi_equi-eqtyp to gi_final1-eqtyp.
      move gi_equi-erdat to gi_final1-erdat.
      move gi_equi-begru to gi_final1-begru.
      move gi_equi-brgew to gi_final1-brgew.
      move gi_equi-gewei to gi_final1-gewei.
      move gi_equi-groes to gi_final1-groes.
      move gi_equi-answt to gi_final1-answt.
      move gi_equi-waers to gi_final1-waers.
      move gi_equi-ansdt to gi_final1-ansdt.
      move gi_equi-herst to gi_final1-herst.
      move gi_equi-typbz to gi_final1-typbz.
      move gi_equi-serge to gi_final1-serge.
      move gi_equi-herld to gi_final1-herld.
      move gi_equi-warpl to gi_final1-warpl.
      move gi_equi-werk to gi_final1-werk.
      move gi_equi-inbdt to gi_final1-inbdt.
      move gi_eqkt-eqktx to gi_final1-eqktx.
      move gi_equz-gewrk to gi_final1-gewrk.
      move gi_equz-hequi to gi_final1-hequi.
      move gi_equz-rbnr to gi_final1-rbnr.
      move gi_equz-submt to gi_final1-submt.
      move gi_equz-tidnr to gi_final1-tidnr.
      move gi_equz-iwerk to gi_final1-iwerk.
      move gi_equz-ingrp to gi_final1-ingrp.
      move gi_equz-mapar to gi_final1-mapar.
      move gi_iloa-abckz to gi_final1-abckz.
      move gi_iloa-eqfnr to gi_final1-eqfnr.
      move gi_iloa-anlnr to gi_final1-anlnr.
      move gi_iloa-tplnr to gi_final1-tplnr.
     move gi_efhm-planv to gi_final1-planv.
     move gi_efhm-objty to gi_final1-objty.
     move gi_efhm-steuf to gi_final1-steuf.
     move gi_efhm-ewform to gi_final1-ewform.
   append gi_final1.
   clear gi_final1.
endloop.
sort gi_final1 by equnr eqtyp.
endform.
*loop at gi_equi.
move-corresponding gi_equi to gi_final1.
read table gi_equz with key equnr = gi_equi-equnr.
*if sy-subrc = 0.
*move-corresponding gi_equz to gi_final1.
*endif.
*read table gi_iloa with key iloan = gi_equz-iloan.
*if sy-subrc = 0.
*move-corresponding gi_iloa to gi_final1.
*endif.
append gi_final1.
clear gi_final1.
endloop.
endform.
FORM col_head.
  fieldnames-field = 'equipment number.'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'equipment category'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'valid on'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'equipment descrition'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'start up date'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'object type'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'authorisation group'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'weight'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'unit of weight'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'size\dimension'.
  APPEND fieldnames.
  CLEAR fieldnames.
   fieldnames-field = 'aquisation value'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'currency key'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'aquisation date'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'manufacturer'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'model number'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'manufacturer part number'.
  APPEND fieldnames.
  CLEAR fieldnames.
   fieldnames-field = 'manufacturer serial number'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'manufacturer country'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'maintanance plan'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'functional location'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'Superord.Equip'.
  APPEND fieldnames.
  CLEAR fieldnames.
   fieldnames-field = 'Technical Identification Number'.
  APPEND fieldnames.
  CLEAR fieldnames.
   fieldnames-field = 'constant type'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'ABC Indicator'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'Sort field'.
  APPEND fieldnames.
  CLEAR fieldnames.
   fieldnames-field = 'asset  number'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'maintanance planning plant'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'planner group'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'main work centre'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'plant work centre'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'Catalog profile'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'task list usage'.
  APPEND fieldnames.
  CLEAR fieldnames.
fieldnames-field = 'control key'.
  APPEND fieldnames.
  CLEAR fieldnames.
  fieldnames-field = 'user formula'.
  APPEND fieldnames.
  CLEAR fieldnames.
endform.
FORM download TABLES   fieldnames gi_qua USING    pfname.
  CALL FUNCTION 'WS_DOWNLOAD'
       EXPORTING
            filename                = pfname
            filetype                = 'DAT'
       TABLES
            data_tab                = gi_qua
            fieldnames              = fieldnames
       EXCEPTIONS
            file_open_error         = 1
            file_write_error        = 2
            invalid_filesize        = 3
            invalid_type            = 4
            no_batch                = 5
            unknown_error           = 6
            invalid_table_width     = 7
            gui_refuse_filetransfer = 8
            customer_error          = 9
            OTHERS                  = 10.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ELSE.
    MESSAGE i002 WITH pfname .
  ENDIF.
endform.
regards
siva
Message was edited by: siva
        siva prasad

Similar Messages

  • HT4137 When I back up my iPhone using iTunes, where does the information get stored?

    I have a problem. 
    I have an iPhone that has already been synced with an HP laptop.  This PC is now in need of repair but the price of repair was too costly so I bought a MacBook Pro to replace it.
    I would like to now sync my iPhone with my new MacBook using iTunes but when I attempt this I get a message stating that all the information in my iPhone will be replaced by all the information in iTunes (which is nothing).  I cannot afford to lose all the information in my iPhone but also I cannot update my iPhone using iTunes because it has not been paired with my new MacBook and I am told that it can only be paired with one computer at a time.  I cannot unpair it with my old PC because my old PC doesn't even boot up anymore.
    I was told that I could Backup the information in my iPhone by control clicking on the icon in the toolbar to the left of the iTunes screen which would then let me sync safely.  I have now done this but I still have nothing to show for this in the iTunes library (no music, photos, notes, contacts etc.) and I have no idea where this backup has been stored.
    Also in the help menu in iTunes it says that media files such as songs, videos and some photos AREN'T backed up but can be restored by syncing with iTunes (how is this possible to restore something that hasn't been backed up in the first place?).
    I am really stuck with this and hope that someone out there can help.
    Leigh

    The first step in the sync process is to create a backup.  On a mac this backup is located at
    ~/Library/Application Support/MobileSync/Backup.  The backup does not included iTunes media as it is assumed to be in the iTunes library you are syncing with.  Also, as you have discovered, when you first sync with a new iTunes library iTunes will erase all iTunes media on the phone (music, videos, etc.) and replace it with the media in the library you are syncing with.  Photos from Camera Roll (which are taken by the phone) are part of the backup.  Photos in Photo Library (which were synced to your phone from your computer) are not; again, because it is assumed they are already on your computer as that is how they were synced to your phone in the first place.
    What, exactly, is still on your phone at this point?

  • Where is the port information stored in HSS for HSS mode Essbase servers?

    In order to test .sec file validity, I started up a temporary server on port 1426. The .sec file was copied from an existing SS mode Essbase server. This worked fine and I stopped the temporary server. However, now in Shared Services, the Global "Analytical Server" instance inside the "Analytical Servers" project now points to port 1426. I can no longer manage the real server on port 1423 in HSS. Can somebody tell me where this port information is stored so I can change it?
    I don't want to have to re-externalise and mess about like that because I tried this on a test box and got into a horrible mess because externalising creates new analytical server instances in HSS with a new index number which doesn't match the original one etc. Horribly mess.
    This port number must be stored somewhere in HSS? It's not in OpenLDAP I think as I exported the whole server as LDIF and the string "1426" does not occur in the export. Couldn't find it in the HS9_HSS database either but perhaps I missed it.

    For reference, I found out how to fix this:
    Look in the Repository HS9_HSS for the table VERSION_CONTENT
    in the HUGEBLOBS (which are XML fragments), you'll find the the settings. Export, alter, import.
    Restart HSS and Admin services.

  • Where is the printer queue stored - and how to delete all queue jobs?

    I ran into a problem after I installed the Roll paper feeder on my Epson R1800. All of a sudden files will not print anymore.
    One thing that may cause a problem is that there are two previous files (pdf I think) that someone else tried to print yesterday looking for a different printer on regular Letter size paper that are still in the queue because they did not print successfully. Everytime I tell Photoshop to print my photo on the Roll paper, those two old jobs pop back up on the printer queue gui and the system stops saying "wrong paper type for this job". Then I delete those two old jobs so there is only the Roll paper one left but it just sits there and wont print. When I launch the utility to check is all is kosher, sometimes it will give me the ink cartridge levels without a problem but sometimes it claims a communication error. I have re-checked the connection and everything and all is OK. When I launch the printer utility and tell it to print a Nozzle Check test, it prints it without a problem so there really is no prob with the communication.
    When I restart the computer and the printer and try again, the two old jobs that I deleted in the previous step always reappear. So I wonder if, those two pdf jobs are kinda screwing with the system and should be deleted. But as i said, everytime I delete them, they look like they disappear from the list but my photo job just sits there on the queue without printing. The jobs are not stopped and there is no Hold on this one. If I quit and re-launch the print job, the old ones re-appear in the queue. So they must be stored someplace and are not deleting correctly. Does anyone know where this cue file is stored and what it is called? I have looked in Application Support and in Preferences but I can't see anything that looks like it.
    I have downloaded the drivers from Epson for this printer again but that doesn't do anything either. I am using 10.4.11 on an 24 inch iMac intel 2.4Ghz. I only use the stock Apple utilities, no funky third party addon except for the Epson drivers. The printer utilities are:
    Epson Printer Utility v3.01
    Stylus R1800 utility v4.7(161.10)
    Thank you for any help.
    Bo

    Hooray, we found the problem! BOO, we already found the problem elsewhere!
    Sooo, it seems we have some kind of Permission problem, have you Repaired Permissions ad rebooted?
    At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 5 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!
    Disconnect the USB cable from any UPS so the system doesn't shut down in the middle of the process.
    Or we could maybe go back to that window, click on Printers, remove it? (Thinking perhaps the jobs will go away with the printer!?)
    Or would you like to delve into the hidden folders/files to try to handle this?

  • Where are emails in mailboxes stored?

    I am running Mavericks 10.9.3 on my iMac and recently had to have the Genius Bar completely reset my system due to issues with performance since the upgrade. I was primarily using Backblaze to back up my entire operating system. I am now trying to restore "Mailboxes on My Mac"in Mail. I was able to get the actual names of mailboxes back via going to my library in the back up and moving all folders to my current library, however it only restored the mailboxes themselves. There are no emails that were but should have been included.
    Any ideas of where this missing data is stored and how to get it back to it's appropriate place?
    Thank you.

    I tried what you suggested. Clicking open simply takes it to  a .noindex folder, which using Open for that goes to Data, continuing this process takes me to several numbered folders, with numbered subfolders, then a folder called Messages which then takes me to a saved email or two. It never imports to iMail, but at least I eventually can access the messages and move them manually back to where they need to go I guess. Seems quite tedious though. :/

  • So where we see the status of this work order request

    Hi All,
    I have submitted work order WO00034931 in SAP for a new vendor address but it seems my approver (Andre Vabre) never received it. In SAP, its status is “Submitted for Approval”.
    So where we see the status of this work order request
    Thanks,
    Kumar

    Hi
    You can make the price of a variant dependent on the characteristic values assigned (Pricing).You can use
    variant conditions to define surcharges and discounts for a variant
    Variant u2013Pricing steps
    Create condition record
    create a procedure where you enter the reference from the characteristic
    Assign the procedures to either the characteristic values
    configure the material in the sales order
    The net price for the material is displayed
    If a value that triggers a variant condition is selected when configuring a material in a sales order, the price of the material displayed under Net value is automatically increased or reduced.
    In addition, the Conditions pushbutton is displayed.
    On pressing this pushbutton,
    One can see which conditions have
    influenced the price.
    I tried to list you as much detail as possible. Hope that you will be able to resolve your issue
    Thanks

  • How to search this value in oracle database to find out the table

    Hi expert,
    I know there is a value in oracle database, please show me how to search this value in oracle database to find out the table holding this value.
    Many Thanks,

    918440 wrote:
    Hi friends,
    this question is really practical, I already know there is value from application saved in database, I want to search the whole database to figure out which table the value is contained.write SQL that writes SQL to query every table.
    Handle:     918440
    Status Level:     Newbie
    Registered:     Mar 2, 2012
    Total Posts:     20
    Total Questions:     10 (10 unresolved)
    why do you waste time here when you NEVER get any answer to any question you post?

  • Replication of Material Sales status (with user values) from ECC to CRM

    Hi all,
    I 'm trying to find out how to replicate the  sales statuses of the material master data in ECC (in view "sales", field DChain spec. status, MKVE-VMSTA)  to the Material SAles statuses in CRM.
    The sales statuses in ECC have been maintained (via menu SPRO/logistics general/master data/basic settings/settings for key fields/DAta relevant to sales and distribution)) : new specific values have been added to the standard ones.
    Then, this customizing has been replicated to CRM via the DNL_CUST_PROD3 repliction object ( table TVMS).
    I have also created a user status profile with values in CRM with the same values, and assigned with the configurator the status profile to the screen, so the values are selectable in the sales status in CRM (in header).
    But, now, how can i replicate the sales statuses of the ECC materials to either :
    -the product status (header) in CRM, or
    -the sales status (distribution chain specific) in the assignment block of the Distribution-chain specific data  ?
    Is a specific development needed?
    there are some existing notes (623026, 428989, 495764), but not clear about what is possible in terms of replication of statuses
    thanks a lot

    It seems that there is no mapping between ECC and CRM sales area.
    If u want to download customer from ECC for that u have to mention the customer sales area in to the filter and then u have to start  down load from ECC.

  • From where are values of BEB CESS ECS captured in J1IIN for Export

    Hi ,
    In export sale,we dont mention BED CESS ECS condition type in pricing procedure.
    While creating J1IIN we get excise details of BED CESS ECS in excise invoice.
    From where does this value come.
    parsad

    Hi,
    In the export pricing procedure, BED,ECS,SECess condition types are marked STATISTICAL and hence it is not accounted.
    The values are captured for printing ARE-1 form only.
    Regards,
    Anbu

  • I have a value 'JPM'.wants to know the table containing this value.

    My application is throwing error becouse of one of the value (JPM) .
    Can i know which table has this value.
    I cannot use USER_TABB_COLUMNS since i dont know the COLUMN_TYPE.
    i dont know wat kind of field is this.
    the schema is not big and it contains approx. 500 objects.
    Kindly suggest.

    Mysterious. This is why I dislike dynamic SQL: you can't tell whether it's really going to work until you run it. All I can suggest is some debugging. I don't really like to encourgae the use of the Devil's Debugger, but you can change the inner loop to show which column it's about to execute and hence try to figure out what goes wrong when it fails....
    SQL> DECLARE
      2     n NUMBER;
      3  BEGIN
      4      FOR r IN ( SELECT owner, table_name, column_name
      5                 FROM all_tab_columns
      6                 WHERE  data_type IN ('CHAR', 'VARCHAR2')
      7                 AND   owner = 'A'
      8                 AND    data_length >=3 )
      9      LOOP
    10          dbms_output.put_line(r.owner||'.'||r.table_name||'.'||r.column_name);
    11          EXECUTE IMMEDIATE
    12              'select count(*) from '||r.owner||'.'||r.table_name||
    13              ' where '||r.column_name||' = ''JPM''' INTO n;
    14          IF n != 0 THEN
    15              dbms_output.put_line('FOUND='||r.owner||'.'||r.table_name||'.'||r.column_name);
    16          END IF;
    17      END LOOP;
    18  END;
    19  /
    A.DEPTREE.TYPE
    A.DEPTREE.SCHEMA
    A.DEPTREE.NAME
    A.IDEPTREE.DEPENDENCIES
    A.T1.COL2
    A.TEO.WHATEVER
    A.TT1.COL1
    PL/SQL procedure successfully completed.
    SQL> Cheers, APC

  • Crystal Reports for Eclipse Free Version - What is the status of this tool?

    I'm inquiring about the status of this tool now that SAP is on the scene.
    I used it about a year ago and am coming back to it - I'm not finding much on the new SAP support site.
    Is it being killed by SAP?  I don't want to start a new project with a dead SDK...
    If not, what is the latest release, where are docs for the latest release, and where can I download the latest release?
    Thanks in advance.

    Well, I tried that link, then tried to get to an article (link) that is behind 'Understanding the relationship between Crystal Reports, Java, and Eclipse' and I cannot get to the link.
    I keep getting a SAP -- Expert Weblog Login challenge screen.  I'm registered (I think) with all of the new SAP SDN and Business Objects developer networks (I mean - i'm logged in here, right?).
    Lastly - I was the administrator and manager for the Business Objects OEM Premier Partner plan for my last company, and I am intimately familiar with this product - what I'm asking for is most likely not behind the scenes on some of these articles.  What I need to know is what is SAPs commitment to this product, where is the original development team for it (are they being supported for Ganymede, etc.) and what are the future plans for it?  I would prefer answers directly from SAP development management giving definitive direction on this product's future before I recommend taking a chance on it to my firm.

  • CL20N Status changed: missing values for required chars for ROH & FERT

    Dear Expert,
    I am getting this message no. CL500 (Status changed: missing values for required chars) when I try to save variant class (Class type 300) assignment to material master (Raw Material) with Released 1 status in CL20N; but I do not get this message during assignment for FERT. I can save a FERT with Released1 status to a variant class without any system message. I am using configurable material in purchasing and this message is not valid in this case. Is there anywhere I can turn off this message for raw material just like FERT?
    Regards,
    HK

    Hello Han Keat,
    There are notes for this error message. Can you please check note 1537443 and 1431600 if it is in your system
    Thanks Amber

  • Where the value of systimestamp/sysdate comes from and dbms_scheduler

    I saw bunch of other posts but I could find the post that exactly explaining about where the value returned as systimestamp/sysdate comes from or impacted or I’m missing something and need some help.
    Here is my situation
    I have an access to this db (let me call db A) and when I access it, I get following result. I don’t have full access to this db so I cannot experiment a lot here.
    SYSTIMESTAMP CURRENT_TIMESTAMP LOCALTIMESTAMP DBTIMEZONE SESSIONTIMEZONE
    27-MAR-13 02.31.55.041411 AM +00:00 26-MAR-13 07.31.55.041416 PM -07:00 26-MAR-13 07.31.55.041416 PM +00:00 -07:00
    I’m in PST timezone.
    I have my db which I have full access as well as its host.
    I can make result like db A on my db if I started up db and its listener while TZ environment variable equal to UTC.
    Now I saw in other post that someone was trying to retrieve systimestamp value in a job executed via dbms_scheduler.run_job.
    So I did that in two ways. 1 with use_current_session = true and 2 is false for the same.
    On my db, results are the same (both returns time in UTC) but on db A, I got UTC time when use_current_session = true and PST when use_current_session = false.
    So questions are:
    What could be the difference in setup between my db and db A?
    Is there a query, logfile, or anything I should check to find out what can be the difference?
    Any clue about where to check will be appreciated as well and please let me know if there is some additional information necessary to provide me some help on this.
    I tried to find the cause with my db and I could see the same result as db A which is to see UTC time if use_current_session = true and PST time if use_current_session = false by bringing up the db listener after I set TZ environment variable equal to PST8PDT. However this causes systimestamp from sqlplus session become also a PST time.
    The reason I’m playing around with the setup and checking systimestamp value is because we are facing the situation where everywhere except pl/sql job submitted by enterprise scheduler service is pointing wrong timezone (PST instead of UTC) and I’ve been searching the solution or clue for where to look at.

    Hi Stephen,
    I think your first thought about using a javascript timer, call an APEX application process to get the new value and finally set it in the page 0 item would be the way I would take. :)
    +"Also, the message shown may vary depending on who is logged in, i.e. the user session. More than user is logged-in at the same time."+
    In case you use an application process this shouldn't be any problem.
    Some useful links: [Carl Backstrom's example|http://apex.oracle.com/pls/otn/f?p=11933:11]
    [My example application includes similar ways of using js and application processes|http://apex.oracle.com/pls/otn/f?p=65555:1]
    Best regards,
    Tobias
    [http://apex-at-work.blogspot.com/|http://apex-at-work.blogspot.com/]

  • How to Change Field Status Group pertaining Value in SPRO

    Dear Sir,
    We are required to change the value for "Cost Center" as sppressed against a GL in the Field Status Group .
    We followd following path :
    Run Tcode FS00 , giving GL as 351200 , and on "Create/Bank/Interest" Tab double clicked the "Field Status Group" > Double click on "Additional Account Assignment"> Here against the Cost Center it is marked as Suppressed , but we want it to be marked as "Req Entry" .
    Kindly guide me , how can this value be changed please .
    Regards
    B V Mittal

    hii
    u can do it through obc4.
    go to obc4 select the varient. and than go to G004 cost center field statu varient..
    go to additional account assignments and than change status to the required field.
    Than assign that G004 to GL account.
    Thanks
    sejal

  • Query to delete row where column value contains alphabets

    Hi,
    Could anyone please help me to get this query work.
    Query to delete row where column value contains alphabets.
    DELETE  FROM BIN_ITEM WHERE order_nmb LIKE '%[A-Z]%' || LIKE '%[a-z]%'
    Thanks and Regards,
    Deekay.

    RaminHashimzadeh wrote:
    SELECT order_nmb FROM BIN_ITEM WHERE regexp_count(order_nmb,'[0-9]') = 0
    Ramin Hashimzade
    But that won't reject strings like 'gfgG%dgh' which aren't pure alphabetic.
    Try:
    with test_data as (
    select 'ghTYJYEhdfe' str from dual
    union
    select 'dfF5ssd' from dual
    union
    select 'rgth*dgheh' from dual
    union
    select 'ggf{' from dual
    union
    select 'rwhrhrh' from dual
    select  *
    from test_data
    where regexp_instr(str,'[^[:alpha:]]')=0;

Maybe you are looking for

  • New C6-01 user/phone and problem with backup/resto...

    Hello everyone. I recently purchased a new C6-01 (and first-time Nokia owner) and having trouble with getting maps restored onto a new 32GB uSDHC card and need some help. It is my understanding that I can backup and restore all my phone contents and

  • Bank account display

    Hello Friends In FS10n Bank account Display I want offict entry line items   ? for example Vendor a/c               Dr  1000 Bank Chq issue A/c  Cr  1000 in Bank Chq issue a/c- Vendor a/c   Cr   1000

  • Application and system prefs errors after restoring user

    When I try to open a few of my applications, I'm getting this error message: "[application] cannot be opened because of a problem."  And something about check with the developer for compatibility with this version of OSX.  This is happening with all

  • Mountain Lion - Dock problem

    I have problem with my Dock after upgrade to Mountain Lion. Update to v.10.8.1 did't help Problems: When have more than 14 programs opened in dock, more icons doesn't show up When close some app, it still stays in the Dock, when I click on it by left

  • Installing Windows via DVD? Bootcamp.

    Hey there, recently I have had alot of problems with my super drive and the thing is that it cannot read any cds at all, or its very rare that it reads one, however, it can read dvds. I really want to install Windows XP and im wondering if its possib