Reg Material get list...

Hi all ,
Is there any BAPI or Function module to get the material data by passing the last change date.
Regards,
Krishnamoorthy.V.

hi,
use  fm CHANGEDOCUMENT_READ_HEADERS.
we can get required data from cdpos and cdhdr tables
check this code it helps u
TABLES : MARC.
DATA :BEGIN OF GI_MARC OCCURS 0,
      MATNR LIKE MARC-MATNR,
      WERKS LIKE MARC-WERKS,
      DISPO LIKE MARC-DISPO,
      END OF GI_MARC.
DATA : CHAR TYPE I,
       COUNT TYPE I,
       VAR TYPE I.
DATA : BEGIN OF GI_FINAL OCCURS 2000,
       MATNR LIKE MARC-MATNR,
       DISPO LIKE MARC-DISPO,
       USERNAME LIKE CDHDR-USERNAME,
       UDATE LIKE CDHDR-UDATE,
       UTIME LIKE CDHDR-UTIME,
       TCODE LIKE CDHDR-TCODE,
       TABNAME LIKE CDPOS-TABNAME,
       TABKEY  LIKE CDPOS-TABKEY,
       FNAME  LIKE CDPOS-FNAME,
       VALUE_NEW  LIKE CDPOS-VALUE_NEW,
       VALUE_OLD   LIKE CDPOS-VALUE_OLD,
       CHANGENR LIKE CDHDR-CHANGENR,
       END OF GI_FINAL.
DATA : MATNR LIKE MARC-MATNR,
       DISPO LIKE MARC-DISPO,
       USERNAME1 LIKE CDHDR-USERNAME,
       UDATE1 LIKE CDHDR-UDATE,
       UTIME LIKE CDHDR-UTIME,
       TCODE LIKE CDHDR-TCODE,
       CHANGENR LIKE CDHDR-CHANGENR.
DATA : GI_CDHDR LIKE CDHDR OCCURS 0 WITH HEADER LINE.
DATA : GI_CDPOS LIKE CDPOS OCCURS 0 WITH HEADER LINE.
DATA : OBJECTCLAS LIKE CDHDR-OBJECTCLAS VALUE 'MATERIAL',
       OBJECTID LIKE CDHDR-OBJECTID,
       USERNAME LIKE CDHDR-USERNAME VALUE 'RSS-SPE',
       UDATE LIKE CDHDR-UDATE VALUE '20070101',
       CHANGE_IND LIKE CDHDR-CHANGE_IND VALUE 'U'.
type-pools: slis.
data: gt_slis_fcat type slis_t_fieldcat_alv.
data: gt_fieldcat type slis_t_fieldcat_alv.
*data: gt_fieldcatall type slis_t_fieldcat_alv.
data: g_repid like sy-repid.
data: gs_layout type slis_layout_alv.
gs_layout-zebra             = 'X'.
gs_layout-colwidth_optimize = 'X'.
SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-110.
SELECT-OPTIONS :  P_DISPO FOR MARC-DISPO.
SELECT-OPTIONS : RECORDS FOR CHAR.
SELECTION-SCREEN : END OF BLOCK B1.
START-OF-SELECTION.
perform process_data.
perform f_fieldcat_init using gt_fieldcat[].
perform alv_display tables gi_final using gt_fieldcat[].
form process_data.
  SELECT MATNR WERKS DISPO FROM MARC INTO TABLE GI_MARC
                            WHERE DISPO IN P_DISPO
                            AND WERKS = '1011'." Becoz we hav to chk the
the changes made in the material while extendin tht matrl frm 1011 to
*other plant.
  IF NOT GI_MARC[] IS INITIAL.
    IF NOT RECORDS-LOW IS INITIAL .
      IF NOT RECORDS-HIGH IS INITIAL.
        DESCRIBE TABLE GI_MARC LINES COUNT.
        IF RECORDS-HIGH < COUNT.
          DELETE GI_MARC FROM RECORDS-HIGH TO COUNT.
        ENDIF.
        IF RECORDS-LOW <> 1.
          IF RECORDS-LOW <> 0.
            DELETE GI_MARC FROM 1 TO RECORDS-LOW.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
  ENDIF.
  LOOP AT GI_MARC.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
      EXPORTING
        INPUT              = GI_MARC-MATNR
     IMPORTING
       OUTPUT             = GI_MARC-MATNR
EXCEPTIONS
  LENGTH_ERROR       = 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.
    OBJECTID = GI_MARC-MATNR .
    CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
      EXPORTING
  ARCHIVE_HANDLE                   = 0
       DATE_OF_CHANGE                   = UDATE
        OBJECTCLASS                      = OBJECTCLAS
        OBJECTID                         = OBJECTID
  TIME_OF_CHANGE                   = '000000'
       USERNAME                         = USERNAME
  LOCAL_TIME                       = ' '
  DATE_UNTIL                       = '99991231'
  TIME_UNTIL                       = '235959'
      TABLES
        I_CDHDR                          = GI_CDHDR
     EXCEPTIONS
       NO_POSITION_FOUND                = 1
       WRONG_ACCESS_TO_ARCHIVE          = 2
       TIME_ZONE_CONVERSION_ERROR       = 3
       OTHERS                           = 4
    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 'ARCH_ANA_PROGRESS_INDICATOR'
         EXPORTING
              TEXT = 'Processing'.
    IF NOT GI_CDHDR[] IS INITIAL.
      LOOP AT GI_CDHDR.
      MOVE GI_MARC-MATNR TO GI_FINAL-MATNR.
      MOVE GI_MARC-DISPO TO GI_FINAL-DISPO.
      MOVE GI_CDHDR-USERNAME TO GI_FINAL-USERNAME.
      MOVE GI_CDHDR-UDATE TO GI_FINAL-UDATE.
      MOVE GI_CDHDR-TCODE TO GI_FINAL-TCODE.
      MOVE GI_CDHDR-CHANGENR TO GI_FINAL-CHANGENR.
        VAR = 1.
        CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
          EXPORTING
            INPUT              = GI_FINAL-MATNR
            IMPORTING
           OUTPUT             = GI_FINAL-MATNR
         EXCEPTIONS
           LENGTH_ERROR       = 1
           OTHERS             = 2
        IF SY-SUBRC <> 0.
        ENDIF.
        OBJECTID = GI_FINAL-MATNR ."to ensure that objid is in proper
*format
        SELECT *
               FROM CDPOS
               INTO TABLE GI_CDPOS
          PACKAGE SIZE 100
          FOR ALL ENTRIES IN GI_cdhdr
               WHERE OBJECTID = OBJECTID
                 AND CHANGENR = GI_CDHDR-CHANGENR
                 AND OBJECTCLAS = OBJECTCLAS
                 AND CHNGIND =  CHANGE_IND." only those values will b
*takn which have been modified nd nt created
        IF SY-SUBRC = 0.
          LOOP AT GI_CDPOS.
      MOVE GI_MARC-MATNR TO GI_FINAL-MATNR.
      MOVE GI_MARC-DISPO TO GI_FINAL-DISPO.
      MOVE GI_CDHDR-USERNAME TO GI_FINAL-USERNAME.
      MOVE GI_CDHDR-UDATE TO GI_FINAL-UDATE.
      MOVE GI_CDHDR-TCODE TO GI_FINAL-TCODE.
      MOVE GI_CDHDR-CHANGENR TO GI_FINAL-CHANGENR.
            MOVE GI_CDPOS-TABNAME TO GI_FINAL-TABNAME.
            MOVE GI_CDPOS-TABKEY TO GI_FINAL-TABKEY.
            MOVE GI_CDPOS-FNAME TO GI_FINAL-FNAME.
            MOVE GI_CDPOS-VALUE_NEW TO GI_FINAL-VALUE_NEW.
            MOVE GI_CDPOS-VALUE_OLD TO GI_FINAL-VALUE_OLD.
              APPEND GI_FINAL.
              CLEAR GI_FINAL.
           ENDIF.
            VAR = VAR + 1.
   ENDSELECT.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
          CALL FUNCTION 'ARCH_ANA_PROGRESS_INDICATOR'
         EXPORTING
              TEXT = 'Processing'.
    ENDIF.
  ENDLOOP.
  endform.
form f_fieldcat_init using lt_fieldcat type slis_t_fieldcat_alv.
  data: ls_fieldcat type slis_fieldcat_alv.
   clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'MATNR'.
  ls_fieldcat-seltext_l    = 'Material number'.
ls_fieldcat-tabname      = 'GI_final'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'DISPO'.
  ls_fieldcat-seltext_l    = 'mrp controller'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'USERNAME'.
  ls_fieldcat-seltext_l    = 'Username'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'CHANGENR'.
  ls_fieldcat-seltext_l    = 'Change Number'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'UDATE'.
  ls_fieldcat-seltext_l    = 'modified date'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'UTIME'.
  ls_fieldcat-seltext_l    = 'MODIFIED TIME'.
  append ls_fieldcat to lt_fieldcat.
clear ls_fieldcat.
ls_fieldcat-fieldname    = 'UDATE'.
ls_fieldcat-seltext_l    = 'MODIFIED DATE'.
append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'TCODE'.
  ls_fieldcat-seltext_l    = 'TRANSACTION CODE'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'TABNAME'.
  ls_fieldcat-seltext_l    = 'TABLE NAME'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'TABKEY'.
  ls_fieldcat-seltext_l    = 'TABLE KEY'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'FNAME'.
  ls_fieldcat-seltext_l    = 'FNAME'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'FVALUE'.
  ls_fieldcat-seltext_l    = 'FVALUE'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'VALUE_NEW'.
  ls_fieldcat-seltext_l    = 'NEW VALUE'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'VALUE_OLD'.
  ls_fieldcat-seltext_l    = 'OLD VALUE'.
  append ls_fieldcat to lt_fieldcat.
endform.                    " f_fieldcat_init
form alv_display tables  gi_final using gt_fieldcat .
  call function 'REUSE_ALV_LIST_DISPLAY'
   exporting
  I_INTERFACE_CHECK              = ' '
  I_BYPASSING_BUFFER             =
  I_BUFFER_ACTIVE                = ' '
   I_CALLBACK_PROGRAM             = ' Material list '
  I_CALLBACK_PF_STATUS_SET       = ' '
  I_CALLBACK_USER_COMMAND        = ' '
  I_STRUCTURE_NAME               =
     is_layout                      = gs_layout
     it_fieldcat                    = gt_fieldcat
  IT_EXCLUDING                   =
  IT_SPECIAL_GROUPS              =
  IT_SORT                        =
  IT_FILTER                      =
  IS_SEL_HIDE                    =
  I_DEFAULT                      = 'X'
  I_SAVE                         = ' '
  IS_VARIANT                     =
  IT_EVENTS                      =
  IT_EVENT_EXIT                  =
  IS_PRINT                       =
  IS_REPREP_ID                   =
  I_SCREEN_START_COLUMN          = 0
  I_SCREEN_START_LINE            = 0
  I_SCREEN_END_COLUMN            = 0
  I_SCREEN_END_LINE              = 0
IMPORTING
  E_EXIT_CAUSED_BY_CALLER        =
  ES_EXIT_CAUSED_BY_USER         =
    tables
      t_outtab                       = gi_final
EXCEPTIONS
  PROGRAM_ERROR                  = 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.
endform.
regards
siva

Similar Messages

  • Func/BAPY to get list of objects from Material class

    Hi guys,
    I am looking for BAPI/FUNC to get list of material/objects if I know Class and Class type. In MM02 I am doing following: In selection of input I choose Materilas of Class there I write Class and Class type, and then there is icon FIND IN INITIAL CLASS after clicking that icon I get list of materials for entered class.
    Can you advise me which BAPI/Func do that or in which tables I can find this DATA.
    Thanks very much for any help.
    Zbynek

    Zbynek,
    Try using this BAPI....<b>BAPI_CLASS_SELECT_OBJECTS</b>
    Actually you can do this by directly going to tables....
    First using the class type and class number, go to KLAH tables... get the Int class no. (KLAH-CLINT). Using this go to KSSK table and use the KLAH-CLINT value in KSSK-CLINT and adda another condition like KSSK-MAFID = 'O'.
    Hope this helps...
    Please provide reward points if you find this reply helpful.
    Balaji

  • Is there any FM or BAPI to get list of all sales orders

    Hello all,
            I have the requirement like below.
    Is there any FM if i Pass Drawing document no, type,part,revision level which gives
    the output list as.
    1) all sales orders, where the above drawing document no is attached to the materials
    and these materials are used as one of the lower level components in the Sales order BOM,
    I need to show all those sales orders along with SO number,item,Material,Plant and BOM Item no,
    2)all sales orders, where the above drawing document no is attached to the materials
    and the same material is one of the item in sales order.
    3)all sales orders, where the above drawing document no is used as one of the component in Sales order BOm's
    Addition of 1,2,3 will be the o/p.
    are there any FM or BAPI to get the above list.
    Basically the above report is concatenation of report outputs of t-code CSD5 and CS15.
    Awaiting reply.
    Thanks.

    Hi venkatesh,
       You can use the BAPI
    BAPISDORDER_GETDETAILEDLIST
    to get list of all sales orders.
    Here is a lik which provides you BAPI'S regarding everything.
    [http://www.saptechies.com/sap-bapi-list/]
    Hope this will help you.
    Regards,
    Pavan.

  • How to get list of docs for particulat billing type on plant wise

    very urgent
    is there any t-code, report to look thi
    how to get list of billing docs grnerated  for particulat billing type and if possible  on plant wise also
    very urgetnt
    points to be rewarded
    eagerly waitng from sap gurus

    Dear chakri
    As you may be aware, in VF05 you need to enter either Payer Code or Material Code and then based on the selection criteria, the report will generate.  Please give the (ensure that this code is exist in billing document) Payer code and now select "Further sel.criteria" and DONT forget to enter the date in from column of "Billing docs.date".  By default, there you can see one month date range. 
    Still if you get error message, please let me know the error message.
    thanks
    G. Lakshmipathi

  • Material stock doesn't appear in Material dcument list

    Hi Guys,
    please chk the below case.
    We have a material 1234 for which stock exists in unrestricted use. In mm03 system shows stock as 25k. When checked the material document list in MB51 for existing stock there it shows no movements have happened for this material 1234.
    How can this happen?
    Stock is reflecting in master
    Stock is not reflecting in material document list / no movements happened.
    Regards,
    Suresh

    Hi Guys,
    Thanks for all your responses.
    Here the problem is i'm able to see the stocks in MMBE and material master.
    If the stock is there in Unrestricted use there should be some movements happened against this.
    Here it's peculiar case. where these materials doesn't have any material documents for this.
    How can this be possible? I have checked MB51 if there exists any material documents posted for this material. There exists nothing. it shows empty. where can i find material docuemts and / or any movement happened for this material.
    without happening a movement against a material how does the stock gets updated with qty?
    Regards,
    Suresh

  • Material-shortage list

    hi
    our client business process is Variant configuration with MTO, it is an power management company they having one soft wire called maarsman in that they are not able to get Material-shortage list , please follws their problem and give me suggestion that  how i can get solution from SAP to convience my client
    1.Material-shortage list is a major problem , whenever work order placed, Material-shortage list is not generated according work order, they are doing manually, so they need it should be arising automatically according to particular work order it has to be systemised through SAP
    with regards
    laxmipathi

    Hi,
    1. first define a checking group and assign this in material master.(ovz2)
    2.define a checking rule 01 for created orders and 02 for released orders.(spro)
    3.define the scope of check .(opjj)
    4.define the checking control.(opjk)
    when you define all these the system will automatically checks the material availability during production order creation or release.
    you can also do it in co24 by entering order number or material number.
    Regards,
    nandha
    you can do

  • Pricing: New condition type not getting listed in options in product master

    Hi,
    I have created a new pricing procedure and also created a new condition type for it. I am trying to create a condition record in the product master for this  condition type but the condition is not there in the list of conditions. How can I inlcude it in the condition list?
    Even the new condition type I have created by copying 0PR0 is not getting listed in the options, whereas 0PR0 is getting listed.
    Regards,
    Meenakshi
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:27 AM
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:29 AM

    Hi Meenakshi,
    you need to enhance the condition maintenance group in the customizing, which is assigned to the product master. Please check: IMG: Customer Relationship Management -> Master Data -> Products -> Special Settings for Sales Operations -> Assign Condition Group to Application CRM and IMG: Customer Relationship Management -> Master Data -> Conditions and Condition Technique -> Condition Technique: Basics -> Create Maintenance Group.
    Best Regards,
    Michael

  • WBS element in Material Document List Report

    Hi Guru,
         I have a problem about WBS element which is not show up any data in Material Document List (MB51) movement type 281 and 281 Q event I add WBS in the document.  Anyone know how can i config or do anything to let the system show up, please let me know.
         Thanks in advance.

    Hi,
    Go to SPRO > MM > Inventory Management and Physical Inventory > Reporting > Define Field Selection for Material Document List > Here for Program Name "RM07DOCS", Table "MSEG" add field "MAT_PSPNR" (Valuated Sales Order Stock WBS Element) and activate "Output" indicator.
    And Then check in MB51

  • How to get list of software installed in a system

    How to get list of softwares installed in a system?. should i use registry to get information or control panel?
    is there any package available for this? how should i start with/
    thanks

    How to get list of softwares installed in a system?.Using native code, if at all.
    should i use registry to get information or control panel?Linux has neither.
    is there any package available for this? how should i start with/ Learn the Windows API or Google for some native tool.

  • Why can't I get list view in calendar?

    I can't get List View any longer in Calendar on my iPhone. Why?

    IF you are running 8.x iOS then on the top right side are three icons - three bulleted horizontal lines, search and then a Plus sign
    If you click on the three horizontal line icon you will see the list
    Which iOS are you on?

  • When I send a Group message from my address book, the entire group gets listed in the "To" line. How do I get each member to receive the message individually without listing all members? Its just messy is all.

    When I send a Group message from my address book, the entire group gets listed in the "To" line. How do I get each member to receive the message individually without listing all members? Its just messy is all. Any help is greatly appreciated.

    Hey Grupo Castillo,
    Thanks for the question. You can actually configure this behavior from Mail preferences:
    1. Choose Preferences from the Mail menu.
    2. Click Composing.
    3. Deselect the checkbox for "When sending to a group, show all member addresses".
    When you send an email to the group, only the groups name will be seen.
    Mac OS X: Mail - How to Hide Address Book Group Member Names When Sending an Email
    http://support.apple.com/kb/TA21082
    Thanks,
    Matt M.

  • Get List running all the time in Yosemite

    For the last two days I have had a gear spinning in Yosemite menu bar performing a function named Get List.  What is going on?

    I reran Etrecheck today while the getlist script was running to see if anything else might appear.  Also, I uninstalled CleanMyMac.  Here are the results:
    EtreCheck version: 2.1.5 (108)
    Report generated December 18, 2014 at 07:42:11 EST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        iMac (27-inch, Late 2013) (Verified)
        iMac - model: iMac14,2
        1 3.5 GHz Intel Core i7 CPU: 4-core
        32 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 0/DIMM1
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM1
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        NVIDIA GeForce GTX 780M - VRAM: 4096 MB
            iMac 2560 x 1440
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Uptime: one day 15:50:19
    Disk Information: ℹ️
        APPLE HDD ST1000DM003 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 999.35 GB (752.72 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Hewlett-Packard HP Color LaserJet CM1017
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Support]
        [not loaded]    com.hField.WiFire.ZD1215 (1.0.14) [Support]
        [loaded]    com.logmein.driver.LogMeInSoundDriver (1.0.3 - SDK 10.5) [Support]
        [not loaded]    com.markspace.iokit.IOMissingSyncMassStorage (199) [Support]
        [not loaded]    com.markspace.missingsync.palmos.classicseize (1) [Support]
        [not loaded]    com.palm.ClassicNotSeizeDriver (3.2.1) [Support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.39) [Support]
    Startup Items: ℹ️
        HP USB EWS Gateway: Path: /Library/StartupItems/HP USB EWS Gateway
        MissingSyncMounting: Path: /Library/StartupItems/MissingSyncMounting
        ParallelsTransporter: Path: /Library/StartupItems/ParallelsTransporter
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [loaded]    com.hp.help.tocgenerator.plist [Support]
        [running]    com.hp.productresearch.plist [Support]
        [loaded]    com.oracle.java.Java-Updater.plist [Support]
        [running]    com.rim.BBLaunchAgent.plist [Support]
    Launch Daemons: ℹ️
        [failed]    com.adobe.fpsaud.plist [Support]
        [loaded]    com.adobe.versioncueCS3.plist [Support]
        [running]    com.hfield.WiFireAgent.plist [Support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Support]
        [running]    com.rim.BBDaemon.plist [Support]
    User Launch Agents: ℹ️
        [running]    .dat0939.000 (hidden) [Support]
            /System/Library/CoreServices/Folder Actions Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher /System/Library/CoreServices/Folder Actions Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher
        [invalid?]    .dat1a10.000 (hidden) [Support]
        [loaded]    com.adobe.ARM.[...].plist [Support]
        [loaded]    com.facebook.videochat.[redacted].plist [Support]
        [loaded]    com.google.keystone.agent.plist [Support]
        [not loaded]    com.iLike.Agent.plist [Support]
        [loaded]    com.logos.LogosIndexer.plist [Support]
        [running]    com.microsoft.LaunchAgent.SyncServicesAgent.plist [Support]
        [running]    ws.agile.1PasswordAgent.plist [Support]
    User Login Items: ℹ️
        AirPort Base Station Agent    Application (/System/Library/CoreServices/AirPort Base Station Agent.app)
        Backup Scheduler for Time Machine    Application (/Applications/Time Machine Backup Scheduler.app)
        AdobeResourceSynchronizer    Application (/Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Support/AdobeResourceSynchronizer.app)
        Printer Pro Desktop    Application (/Applications/Printer Pro Desktop.app)
    Internet Plug-ins: ℹ️
        DirectorShockwave: Version: 11.0.3r470 [Support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
        Musicnotes: Version: 1.17.2 [Support]
        OfficeLiveBrowserPlugin: Version: 12.3.5 [Support]
        AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 [Support]
        FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
        Silverlight: Version: 4.0.60129.0 [Support]
        Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 [Support]
        AdobePDFViewer: Version: 8.0.0 [Support]
        NPExView: Version: Unknown [Support]
        JavaAppletPlugin: Version: Java 8 Update 25 Check version
    User internet Plug-ins: ℹ️
        fbplugin_1_0_1: Version: Unknown [Support]
        fbplugin_1_0_3: Version: Unknown [Support]
    Safari Extensions: ℹ️
        1Password [Installed]
        OpenIE [Installed]
    User iTunes Plug-ins: ℹ️
        Flash Player: Version: 9.0.159.0 Mismatch! Adobe recommends 16.0.0.235
    3rd Party Preference Panes: ℹ️
        3ivx MPEG-4  [Support]
        Adobe Version Cue CS3  [Support]
        Citrix ShareFile Sync  [Support]
        Flash Player  [Support]
        Flip4Mac WMV  [Support]
        Java  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 999.35 GB Disk used: 246.62 GB
        Destinations:
            Data [Network]
            Total size: 2.00 TB
            Total number of backups: 3
            Oldest backup: 2014-09-30 07:50:32 +0000
            Last backup: 2014-10-02 13:38:07 +0000
            Size of backup disk: Adequate
                Backup size 2.00 TB > (Disk used 246.62 GB X 3)
    Top Processes by CPU: ℹ️
             8%    WindowServer
             2%    Finder
             2%    ScriptMonitor
             1%    Microsoft Outlook
             0%    fontd
    Top Processes by Memory: ℹ️
        996 MB    firefox
        275 MB    mds_stores
        206 MB    softwareupdated
        172 MB    WindowServer
        103 MB    mds
    Virtual Memory Information: ℹ️
        26.59 GB    Free RAM
        3.68 GB    Active RAM
        2.16 GB    Inactive RAM
        1.91 GB    Wired RAM
        6.32 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Dec 17, 2014, 03:08:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/InkWidgetTool_2014-12-17-15083 3_[redacted].crash
        Dec 17, 2014, 03:08:23 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/InkWidgetTool_2014-12-17-15082 3_[redacted].crash
        Dec 17, 2014, 08:02:20 AM    /Library/Logs/DiagnosticReports/DesktopServicesHelper_2014-12-17-080220_[redact ed].cpu_resource.diag [Details]
        Dec 17, 2014, 12:03:10 AM    /Library/Logs/DiagnosticReports/LogosIndexer_2014-12-17-000310_[redacted].cpu_r esource.diag [Details]
        Dec 16, 2014, 03:52:27 PM    Self test - passed
        Dec 16, 2014, 08:50:15 AM    /Library/Logs/DiagnosticReports/DesktopServicesHelper_2014-12-16-085015_[redact ed].cpu_resource.diag [Details]
        Dec 15, 2014, 10:32:16 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/InkWidgetTool_2014-12-15-22321 6_[redacted].crash
        Dec 15, 2014, 10:32:06 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/InkWidgetTool_2014-12-15-22320 6_[redacted].crash

  • Additional field in material document list

    Dear Expert,
    In the T.code MB51 ( material document list)  in the ITEM DATA i need to add origin group field , is it possible ?
    kindly help the above issue,,
    Regards
    Akshaya

    Hi,
    Yes its possible..............
    procedure is to use the below tocde
    Transaction variant SHD0 is the transaction code.
    Using this tocde you can make a particular field as mandatory and hide the filed, gray the filed...
    Thanks
    Ramakrishna Pathi

  • Java tablespace SAPSR3DB is not getting listed in DB02 tcode

    Hi all,
    We installed Java Add-In in existing ABAP system.
    During Java installation a tablespace will be created named PSAPSR3DB.
    This particular tablespace PSAPSR3DB is not getting displayed in ABAP-DB02 transaction.
    We installed Java Add-In both Quality and PRD Environment.
    PSAPSR3DB tablespace is getting listed in PRD but not in quality server.
    Pls give some inputs on this regard
    Thanks
    Karthik

    Hi Karthikeyan,
    Have you refresh the database in DB02 ?
    Please check if the table have the same onwer as the ABAP.
    Regards,
    Fendi Suyanto

  • Getting list of document name in a container

    Hi,
    I am trying to get list of all document names in a container using the following code in PHP:
    http://dpaste.com/25409/
    but I am getting an error as listed in the above link.
    Any idea? I searched on Google but couldnt get any definitive answer.
    Thanks.

    Hello,
    Try:
    for $doc in collection() return dbxml:metadata('dbxml:name',$doc)
    Regards,
    George

Maybe you are looking for