AFRC values not available completely

Hi Experts
            In the table  AFRC, RUECK , RMZHL values are not available completely, whats the reason, and how to get these values from the tables except AFRU based on the AUFNR value.
Thanks in advance.
Regards
Rajaram

Why the RUECK,RMZHL values are not available in the table AFKO.
Can anyone help me out this.
Regards
Rajaram

Similar Messages

  • Value not available in the context node

    Hi,
    I have created one custom component through BSP_WD_CMPWB  with only one view called u2018partneru2019 with sample button.
    In this view partner ,then  created one  model context node with reference to  u2018 BuilHeaderSearchu2019 search component with only one attribute  u201CPartner IDu201D.
    When I test the component , WebUI  screen shows partner id input box, and sample button. After  entering partner id value in the input box, then I am pressing sample button. But entered value not  available in the context node.  Please help me, how can i get this value?
    Kathir.

    Hi,
    Check the set_method of that attribute and compare with standard.
    Regards,
    Shobhit

  • How to disply error messages if values not available fpr F4 help

    Hi,
    I have implemented F4 help for a selection screen field using function module.
    I want to throw a customized error message if no value is available.
    In my case if no value is available it gives standard message no value available.
    I have tried but it gives a dump.
    Please suggest.
    Thanks and Regards
    Shraddha

    for F4 help defenitely you will be having a select query to populate into internal table
    if it is so
    after the select query with sy-subrc check
    if yes
    then it will proceed with the function module
    if no then throw error message
    message
    use this code
    form f_f4help .
      data : begin of it_itab occurs 1,
               username type usr02-bname,
               end of it_itab.
      select bname from usr02 into table it_itab.
    if sy-subrc = 0
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield        = 'BNAME'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'P_USER'
          value_org       = 'S'
        tables
          value_tab       = it_itab[]
        exceptions
          parameter_error = 1
          no_values_found = 2
          others          = 3.
      if sy-subrc  ne 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    else.
    message with error.
    endif.
    endform.
       cheers
    s.janagar

  • Production Version Value Not available in AFPO

    Dear All,
    in AFPO table Production Version Field is available but with out value.. what could be the reason. if i need value what i need to do.. Please advice.
    Thanks you.
    Best Regards,
    Suresh

    check the following
    PV is created after order is created.
    When creating production order you have not selected PV.
    If the setting is made in MRP4, selection method = 3
    or
    in img OPL8
    Planning tab master data-->PV = make it zero = 0
    The production order created cannot be changed, if possible reverse it and read the master data again after creating the PV.
    please come back if you need clarrification

  • Values not available in Table

    Hi
    I have created one node  with attributes following properties and mapped to one view.
    Cardinality = 0..n
    Selection =  0..n
    Fields :
    f1 - Dropdown
    f2
    f3 - Date
    f4
    In the view, i created table and assigned to those fields. I wrote below code for insert record in table
      DATA : lt_ACTIONPLAN TYPE STANDARD TABLE OF ZST_ACTIONPLAN,
             wa_ACTIONPLAN TYPE ZST_ACTIONPLAN.
      DATA lo_nd_action_plan TYPE REF TO if_wd_context_node.
      DATA lo_el_action_plan TYPE REF TO if_wd_context_element.
      DATA ls_action_plan TYPE wd_this->element_action_plan.
    navigate from <CONTEXT> to <ACTION_PLAN> via lead selection
      lo_nd_action_plan = wd_context->get_child_node( name = wd_this->wdctx_action_plan ).
      lo_el_action_plan = lo_nd_action_plan->get_element(  ).
    wa_actionplan-f1 = 'hi'.
    wa_actionplan-f2= 'mm'.
    wa_actionplan-f3 = sy-datum.
    wa_actionplan-f4 = 'test'.
    append wa_actionplan to lt_ACTIONPLAN.
    lo_nd_action_plan->BIND_ELEMENTS( NEW_ITEMS = lt_ACTIONPLAN ).
    When i am execute my wdy applicaton, it shows following error
    The following error text was processed in the system WLT : The ASSERT condition was violated.
    Anyone help me

    Hi Muthu
    Check the following examples and used appropriate things in your program.
    Accessing the Context Nodes and Node Elements at Runtime                    #
    This document shows how to read, change, add, or delete               #
    information stored in the controller context.                        
    Assumption:
    Node name is:      flights
    View name is:      input_view
    ==============================================================
    Accessing a Context Node
    ==============================================================
    DATA: node_flights TYPE REF TO if_wd_context_node.
    " get flight node via lead selection
    node_flights = wd_context->get_child_node( name = 'FLIGHTS' ).
    OR
    node_flights = wd_context->get_child_node( name = if_input_view=>wdctx_flights ).
    NOTE:
    For each controller (<ctrl>), an interface is generated having the name IF_<ctrl>.
    For each node <node> of a controller context, a constant (WDCTX_<node>) is generated in this interface; it has the name of the node (in uppercase letters) as its value. This constant can be used to access the context node.
    ==============================================================
    Accessing Node Element
    ==============================================================
    DATA:     node_flights TYPE REF TO if_wd_conext_node.
         elem_flights TYPE REF TO if_wd_context_element.
    " Get flight node via lead selection
    node_flights = wd_context->get_child_node( name = 'FLIGHTS' ).
    " Get element via lead selection
    elem_flights = node_flights->get_element( ).
    " Handle exception if lead selection is not set
    if ( elem_flights is initial ).
    endif.
    NOTE:
    The element with index n can be accessed using the method get_element( index = n ) . The number of elements in a collection can be obtained from the method get_element_count( )
    ==============================================================
    Summary
    ==============================================================
    Action :      Ref. to node <node> of controller <ctrl>          
    Method:     r_node = wd_context->get_child_element( name = if_<ctrl>=>wdctx_<node> ).
    Action :      Reference to element at lead selection
    Method:     r_element = r_node->get_element( ).
    Action:     Reference to element with index n
    Method:     r_element = r_node->get_element( index = n ).
    Action:     Get number of elements in collection
    Method:     n = r_node->get_element_count( ).
    ==============================================================
    Accessing Attributes value of a Node Element
    ==============================================================
    DATA:     node_flights TYPE REF TO if_wd_context_node,
         elem_flights TYPE REF TO if_wd_context_element,
         item_connid TYPE if_componentcontroller=>element_flights-connid,
         stru_flights TYPE if_componentcontroller=>element_flights,
         it_flights type if_componentcontroller=>elements_flight.
    " Get node via lead selection
    node_flights = wd_context->get_child_node( name = 'FLIGHTS' ).
    " Get element via lead selection
    elem_flights = node_flights->get_element( ).
    " Get a single attribute value.
    elem_flights->get_attribute(
         EXPORTING
              name = 'CONNID'
         IMPORTING
              value = item_connid ).
    " Get all statically declared attributes
    elem_flights->get_static_attributes(
         IMPORTING
              static_attributes = stru_flights ).
    " Get all static attributes of all node element
    node_flights->get_static_attributes_table(
         IMPORTING
              table = it_flights ).
    NOTE:
    For each node <node> of a controller context, a structure type
    element_<node> is implicitly generated in the interface IF_<ctrl>. The structure fields correspond to the attributes a node element consists of. This constant can be used to type a variable, which is filled by the methods listed above.
    In addition, for each node <node> of a controller context, a standard table type elements_<node> is implicitly generated in the interface IF_<ctrl>. The line type of this table is element_<node>. This constant can be used to type an internal table that can hold the attributes of multiple node elements.
    ==============================================================
    Changing Attribute Values of a given Node Element
    ==============================================================
    DATA:     node_flights TYPE REF TO if_wd_context_node,
         elem_flights TYPE REF TO if_wd_context_element,
         stru_flights if_componentcontroller=>element_flights.
    " Get node via lead selection
    node_flights = wd_context->get_child_node( name = 'FLIGHTS' ).
    " Get element via lead selection
    elem_flights = node_flights->get_element( ).
    " Set single attriubute value
    elem_flights->ser_attribute(
         EXPORTING
              name = 'CONNID'
              value = '0405' ).
    " Set statically declared attributes
    stru_flights-carrid = 'US'.
    stru_flights_connid = '0017'.
    elem_flights->set_static_attributes(
         EXPORTING
              static_attributes = stru_flights ).
    ==============================================================
    Adding new Elements to a Context Node
    ==============================================================
    DATA:     node_flights TYPE REF TO if_wd_context_node,
         first_flight_elem TYPE REF TO if_wd_context_element,
         stru_flights TYPE if_componentcontroller=>element_flights,
         it_flights TYPE if_componentcontroller=>elements_flights.
    " Get node via lead selection
    node_flights = wd_context->get_child_node( name = 'FLIGHTS' ).
    " Create new node element for node FLIGHTS
    first_flight_elem = node_flights->create_element( ).
    " Set attribute values for newly created node element
    first_flight_elem->set_attribute( name = 'CARRID' value = 'US' ).
    first_flight_elem->set_attribute( name = 'CONNID' value = '0017' ).
    " Bind newly created element to node
    node_flights->bind_element(
         new_item = first_flight_elem
         set_initial_elements = abap_false ).
    " Bind structure to node
    stru_flights-carrid = 'US'.
    stru_flights-connid = '0017'.
    node_flights->bind_structure(
         new_item = stru_flights
         set_initial_elements = abap_false ).
    " Bind internal table to node
    stru_flights-carrid = 'US'.
    stru_flights-connid = '0017'.
    APPEND stru_flights TO it_flights.
    stru_flights-carrid = 'AA'.
    stru_flights-connid = '0055'.
    APPEND stru_flights TO it_flights.
    node_flights->bind_table( new_item = it_flights ).
    NOTE:
    The parameter SET_INITIAL_ELEMENTS allows to delete all existing elements of a node and bind only the actual element to the node. In this case the parameter must be set to abap_true (default value). If the structure should be added to the node as an additional element then the parameter must be set to abap_false.
    ==============================================================
    Deleting Elements from a Context Node
    ==============================================================
    DATA:     node_flights TYPE REF TO if_wd_context_node,
         elem_flights TYPE REF TO if_wd_context_element.
    " Get node via lead selection
    node_flights = wd_context->get_child_node( name = 'FLIGHTS' ).
    " Get element via lead selection
    elem_flights = node_flights->get_element( ).
    " Remove element from node
    node_flight = remove_element( element = elem_flights ).
    IF STILL YOU ARE FINDING ANY PROBLEM TRY TO CHANGE THE CARDINALITY PROPERTY TO 1..N.

  • Filter default values not available

    I created filter, for example:
    1
    2
    3
    but when I preview my dashboard - no default value (first value  '1') transferred into destination
    When I set default value(value '1') in destination and preview - no value exist in destination
    And only when I choose value from filter - destination became choosen value
    How to pass filter default value ?

    Hi,
    As you know Filter component filters the data for the selected values, but this component has the peculiar feature that it filters and displays only the result fields after filter without displaying the field present in the filter criteria.
    Example:
    your data is of the form:
    Prod1           Reg1           Mat1        10
    Prod1           Reg2           Mat2        20
    Prod2           Reg1           Mat1        30
    Prod2           Reg2           Mat2        40
    if the filter component has 2 filters for product and region then on selection of Prod1 and Reg1 the destination will display
    Mat1   10
    It displays only fields not present in filter criteria from the source data into destination.
    Hope this helps.
    Bhavna.

  • Values not available for iput help (for Bex)

    Hi Friends,
                  When I am trying to give a value as input for a Bex query. I am getting a validation error saying that the value is invalid. For example:I had given YDRP_Y01 as the input for executing the query. It is giving an error that the YDRP_Y01 is not a valid value.
    I am having these values in the underlying multiprovider for the same infoobject. When i am trying for input help by pressing F4, even then i am not able to find these objects.
    Somebody please help me in resolving the issue.
    Regards
    Sunil

    Hi Sunil,
    I am having these values in the underlying multiprovider for the same infoobject. When i am trying for input help by pressing F4, even then i am not able to find these objects.
    check Master data of that infoobject, whether it contains value "YDRP_Y01". when selecting F4, data come from Infoprovider or master data according the selection made at infoprovider or infoobject.
    Best Regards.

  • Sender File FCC - Key Field Value not available in file

    Hi All,
    I am new to SAP PI. I am working on Sender FCC. Below is the source file structure. I need to handle multiple sub structures Header,1Data,*. I think I have to use Key.field Name and Value. But in the below format we don't have any indicator to identify which is header and which is data record. Please suggest how to processed.
    Header Record (Pipe delimited) (Cardinality 1:1)
    Date
    Invoice Number
    Total Amount
    Company Name
    Data Records (Fixed Length) (Cardinality 1:n)
    Date
    Amount
    Country
    Card Number
    etc...
    Sample File Snippet:
    20100430|4123451810|218.50|CC
    20100430    $150.00     INDIA       1234567     
    20100430    $150.00     INDIA       1234567     
    20100430    $150.00     INDIA       1234567     
    20100430    $150.00     INDIA       1234567

    Hi
    Try using the below parameters in FCC
    Header.fieldSeparator    |
    Header.endSeparator    'nl'
    Data.fieldFixedLengths   ur values --3,5,5..
    Data.endSeparator         'nl'
    Regards
    Ramg
    Edited by: Ramkumar Ganesh on May 24, 2010 4:05 AM

  • Value not available in Essbase but available in report

    Hello All,
    This seems a little wierd but here is the situation.
    I have a member A0035 in my planning application.
    When I do a retrieve through Excel Essbase add-in, there is no value for this specific member for the year 2012. however, when I pull up a report in planning workspace, there is a value of 200 against the member for the same year.
    Is it possible to have such a scenario. What could have gone wrong in this situation?
    Any suggestion is appreciated.

    Thanks all for the answers.
    This is what had happened.
    I was checking the different applications and what I found out is this.
    This particular application gets data from another application.
    The value from the main application is going to wrong place in target application.
    For example,
    There is a parent called Seatle in the main application. When it goes to the second one, the value goes under Chicago, which is why the value that is supposed to be under Seatle has gone to the one under Chicago.
    How can we fix it.

  • Line chart with different "colors": Values not available are displayed as 0

    Hello,
    I defined a line chart with more than one lines (aka "colors" in the chart wizzard) - each line representing the (monthly) values of a year. x axis are the 12 months of the year; y axis are the values.
    When one defines such a line chart in BIP client there is a choice between sum, average and count for the data values.
    This is no problem for my template as there is only one value per month/year - so I used sum.
    The problem: for the actual year there are no values for future months . But bip nevertheless shows 0 for this month/year... Can one prevent this?
    Regards
    Peter

    Solved it finally - unavailable values must explicitly be passed to the report with nothing contained in the value tag.

  • Updated Batch Characteristics on Order Release is not available in MSC3N

    Hi All,
    I have maintained the Class (023) and characteristics for Finished Material. When I am releasing the production order, I am assigning the values for batch characteristics (Custom defined characteristic) after that, If I go and see the corresponding batch in display mode (MSC3N) the value for the characteristic is not updated (entered value not available its blank).
    u2022     Automatic batch creation for the production order during the order releasing is happening exactly as per the configuration but the entered value for the characteristic is not available for the corresponding batch in change as well as display mode (MSC2N/MSC3N)
    Please guide to solve out this issue
    Thanks in Advance

    Hi Sanil,
               Thanks for your speedy reply.
    For me characteristics and all available as per the expectations but the updated value for the characteristcs on release is not sticking with the batch.
    Please guide me to solve out this issue.
    Thanks in Advance

  • Tecra S3: LPT port - EPP mode not available

    How Can I change LPT port mode to EPP in Toshiba TECRA S3 ?
    In the BIOS settings only ECP and SPP are available, but I have memory programmer that needs to be connected to LPT port working as EPP.
    It doesn't work in ECP or SPP.

    Maybe it's not so simple fact when this facility was implemented in chipset. BIOS is the only limitation.
    There are another tools available for another copmuters (it usually means for another chipset) allowing lpt port mode to be temporarily changed to value not available in BIOS.
    Does anybody have any information about this type of tools for Toshiba ?

  • On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available". When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way,

    On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available".
    When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way, no error message. Any ideas to solve this, anyone? Would be greatly appreciated.

    I tried to update and it keeps telling me to get the Application Manager. And this is what happens
    Adobe Application Manager failed and it told me to download the Adobe Support Advisor.
    Adobe Support Advisor told me that there was an issue:" cpsid_82829s1: "A restart is pending," bootstrapper error has occurred. "Token Number: 40-87772-063201122012
    I followed the instructions it gave me to correct this issue:
    If you receive the error "Installer has detected that a machine restart is pending. It is recommended that you quit the installer, restart try again," do the following:
    #Restart the computer and try the installation again.
    #If the installation fails, delete the InProgress registry key: 
    Disclaimer: This procedure involves editing the Windows registry. Adobe doesn't provide support for editing the registry, which contains critical system and application information. Make sure to back up the registry before editing it. For more information about the registry, see Windows registry information for advanced users on the Microsoft support site, or contact Microsoft. 
    Launch Windows Registry Editor.
    (Windows XP) Choose Start > Run, type regedit in the Open text box and click OK.
    (Windows Vista/ Windows 7) Choose Start, type regedit in the Search box, and press Enter.
    Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager.
    Delete the InProgress key.
    I was not able to find the "InProgress" key.

  • OSB to Object Types: difference between NULL value and not available

    Hello all,
    I have a question about Object Types. More specifically, how to differentiate between an empty value (null) and a string not available.
    This is my case:
    I have created an object type with three parameters.
    CREATE OR REPLACE TYPE OSB_EMP_OBJ_TYPE AS OBJECT
    (EMP_ID NUMBER
    ,DEPT_ID NUMBER
    ,ORDER_ID NUMBER
    ,CONSTRUCTOR FUNCTION OSB_EMP_OBJ_TYPE
    RETURN self as result
    /I would like to see what happens when I put an empty string into emp_id, NULL into DEPT_ID and nothing into ORDER_ID.
    To do so I have this test script:
    declare
      p_emp OSB_EMP_OBJ_TYPE := OSB_EMP_OBJ_TYPE();
    begin
      p_emp.EMP_ID := '';
      p_emp.DEPT_ID := null;
    --  p_emp.ORDER_ID := null;
      if p_emp.EMP_ID is null
      then
        dbms_output.put_line('Empty');
      end if;
      if p_emp.DEPT_ID is null
      then
        dbms_output.put_line('NULL');
      end if;
      if p_emp.ORDER_ID is null
      then
        dbms_output.put_line('Not available');
      end if;
    end;The result of this is:
    Empty
    NULL
    Not availableIt seems that Oracle treats all three situations alike. What I would like to achieve is a way to see that p_emp.ORDER_ID was not initialized.
    To elaborate a bit: in our production system this procedure would be called from OSB and the object type would by the input for that procedure. Our database version is 10.2.0.5.0.
    Our procedures look something like this:
    procedure p_procedure ( p_emp in osb_emp_obj_type )
    is
    begin
      do_something;
    end;Can anyone tell me if there is a way to achieve this, so I can see whether or not a value in the object type was filled?
    Thanks in advance!

    Darn...
    Eventually we want to use this for an update procedure. The client gets all current data from the database by calling a webservice that (using OSB) selects the data from our database. What we want to achieve is that the client can update that data, by returning only the changed fields to an update procedure.
    We then handle an empty tag to update the field to null, and we ignore missing tags.
    OSB itself can handle this, but PL/SQL can't.
    I'm now thinking of adding an indicator to each optional field (clear_field_yn). OSB can still check for empty tags or missing tags. When a tag is empty, it's corresponding indicator will be set to 'Y'. If the tag is missing, then it will be set to 'N'.
    Is that a solution to consider, or is there a much simpler approach possible?

  • How do I fix this error? "Could not complete your request because DynamicLink is not available?

    I am trying to open a video to edit in CS6 and I get this error: Could not complete your request because DynamicLink is not available
    I read on one of these formus that I should uninstall and reinstall the program.
    I tried to uninstall the program and it told me to use the Adobe Application Manager.
    Adobe Application Manager failed and it told me to download the Adobe Support Advisor.
    Adobe Support Advisor told me that there was an issue:" cpsid_82829s1: "A restart is pending," bootstrapper error has occurred. "Token Number: 40-87772-063201122012
    I followed the instructions it gave me to correct this issue:
    If you receive the error "Installer has detected that a machine restart is pending. It is recommended that you quit the installer, restart try again," do the following:
    #Restart the computer and try the installation again.  
    #If the installation fails, delete the InProgress registry key:  
    Disclaimer: This procedure involves editing the Windows registry. Adobe doesn't provide support for editing the registry, which contains critical system and application information. Make sure to back up the registry before editing it. For more information about the registry, see Windows registry information for advanced users on the Microsoft support site, or contact Microsoft.  
    Launch Windows Registry Editor.
    (Windows XP) Choose Start > Run, type regedit in the Open text box and click OK.
    (Windows Vista/ Windows 7) Choose Start, type regedit in the Search box, and press Enter.
    Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager.
    Delete the InProgress key.
    I was not able to find the "InProgress" key.
    I just want to be able to edit video using my CS6!!! Please help!
    My system info:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x32
    Operating System: Windows 7 64-bit
    Version: 6.1
    System architecture: Intel CPU Family:6, Model:14, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 1729 MHz
    Built-in memory: 4027 MB
    Free memory: 1810 MB
    Memory available to Photoshop: 3255 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 330M/PCI/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1366
    Video Card Number: 1
    Video Card: NVIDIA GeForce GT 330M
    OpenCL Unavailable
    Driver Version: 8.16.11.8988
    Driver Date: 20100505000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1366 x 768 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GT 330M
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 8192
    Serial number: 91190138603683837940
    Application folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\
    Temporary file path: C:\Users\Ainge\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 452.7G, 265.3G free
    Required Plug-ins folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Required\
    Primary Plug-ins folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112 
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0 
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654 
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0 
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56 
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0 
       boost_signals.dll   DVA Product   6.0.0 
       boost_system.dll   DVA Product   6.0.0 
       boost_threads.dll   DVA Product   6.0.0 
       cg.dll   NVIDIA Cg Runtime   3.0.00007 
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007 
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0 
       dvacore.dll   DVA Product   6.0.0 
       dvamarshal.dll   DVA Product   6.0.0 
       dvamediatypes.dll   DVA Product   6.0.0 
       dvaplayer.dll   DVA Product   6.0.0 
       dvatransport.dll   DVA Product   6.0.0 
       dvaunittesting.dll   DVA Product   6.0.0 
       dynamiclink.dll   DVA Product   6.0.0 
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libeay32.dll   The OpenSSL Toolkit   0.9.8g 
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A) 
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0 
       LogSession.dll   LogSession   2.1.2.1640 
       mediacoreif.dll   DVA Product   6.0.0 
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0 
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4 
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       pdfsettings.dll   Adobe PDFSettings   1.04 
       Photoshop.dll   Adobe Photoshop CS6   CS6 
       Plugin.dll   Adobe Photoshop CS6   CS6 
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   3.0.0.383 
       PSArt.dll   Adobe Photoshop CS6   CS6 
       PSViews.dll   Adobe Photoshop CS6   CS6 
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300 
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g 
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       TfFontMgr.dll   FontMgr   9.3.0.113 
       TfKernel.dll   Kernel   9.3.0.113 
       TFKGEOM.dll   Kernel Geom   9.3.0.113 
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113 
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113 
    Required plug-ins:
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.1
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Sumi-e 13.0
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    I tried to update and it keeps telling me to get the Application Manager. And this is what happens
    Adobe Application Manager failed and it told me to download the Adobe Support Advisor.
    Adobe Support Advisor told me that there was an issue:" cpsid_82829s1: "A restart is pending," bootstrapper error has occurred. "Token Number: 40-87772-063201122012
    I followed the instructions it gave me to correct this issue:
    If you receive the error "Installer has detected that a machine restart is pending. It is recommended that you quit the installer, restart try again," do the following:
    #Restart the computer and try the installation again.
    #If the installation fails, delete the InProgress registry key: 
    Disclaimer: This procedure involves editing the Windows registry. Adobe doesn't provide support for editing the registry, which contains critical system and application information. Make sure to back up the registry before editing it. For more information about the registry, see Windows registry information for advanced users on the Microsoft support site, or contact Microsoft. 
    Launch Windows Registry Editor.
    (Windows XP) Choose Start > Run, type regedit in the Open text box and click OK.
    (Windows Vista/ Windows 7) Choose Start, type regedit in the Search box, and press Enter.
    Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager.
    Delete the InProgress key.
    I was not able to find the "InProgress" key.

Maybe you are looking for

  • What is stander width in html web page?

    Is there stander width for web pages? Sometimes I found who said it is should be 730px as max, is this right? If not then, how I should be chose a width of my page to clear and nice in difference browsers with difference resolution of monitor I wish

  • Entry for host name is missing or empty (Secure Store key: admin/host/).

    Hi All, I am in the process of installing EP7 on SLES9 and MaxDB 7.6 on a clustered HA environment where the SCS, DB and JC components are installed under and referenced by their virtual hostname (eg. sapinst SAPINST_USE_HOSTNAME <virt name>). The SC

  • How do I find duplicate photos in iPhoto

    I have so many duplicates in iPhoto that my library files is way too large by thousands of photos. I need to find a way to weed out duplicate photos. Anyone know how? Thanks, Barb

  • Cant find update Finalcut X

    Why my Mac cant find the update of final cut X ?? I click on the software update but there are no updates Is it cos I have Final cut Pro 7  and the finalcut X is in an other folder ?

  • All Of A Sudden My Buddies On iChat Have Dissappeared Except for One

    Hi: I logged in to iChat and discovered that all of my listed buddies are gone except for one. Any help on how to recover them? thanks Kirk