Conditions on RFQ Header are not changeable at PO Header level

Dear Gurus,
I have maintained a Quotation and enter the conditions on Header level in Quotation. Once i adopt the Quotation in Purchase Order, these conditions are displayed both at Item and Header level and i cannot edit the condition value at PO Header level, they are editable at Item level but not at header level.
I want to edit them at PO Header level too.
Please advise.
Johi Kapoor

Hi,
If that is  item condition then you can not change it at header level
check in M/06 make it at header level  in change which can be made tab
Regards
Kailas Ugale

Similar Messages

  • GL Account details at the header are not flowing to the item level in SC

    Hi All,
    While creating a Shopping Cart, first I am specifying the cost assignment details (i.e., Cost Center, GL Account) in the header and then creating the line items for the shopping Cart.
    While creating these line items, the cost center which is specified in the header is populated at the line item, but GL Account is blank.
    I need to populate the same GL Account at each line item.
    I checked the badi: <b>BBP_DETERMINE_ACCT</b> to populate the GL account for line items. But I am unable to determine this header GL Account in this badi.
    Can anybody help me in this regard, <b>thanks in advance</b>.
    Regards
    Loknath

    Hi
    <b>The purpose of the BADI - BBP_DETERMINE_ACCT is to deal with Shopping cart - Item level data, there it contains only two tables
    ITEM_DATA
    This contains the most important item data for the shopping cart.
    ACCT_DATA
    This contains the account assignment data for the shopping cart item.</b>
    <u>Here is the documentation.</u>
    <b>BBP_DETERMINE_ACCT</b>
    You can use the Business Add-In BBP_DETERMINE_ACCT to specify your own criteria for determining the G/L account.
    In the standard system, the G/L account is determined using the product category and the account assignment type, refer to Define G/L Account for Product Category and Account Assignment Category.
    The G/L account is then placed in field ACCT_DATA-G_L_ACCT. Then, the system calls the Business Add-In BBP_DTERMINE_ACCT.
    In method DETERMINE_ACCOUNT, two table parameters are available:
    ITEM_DATA
    This contains the most important item data for the shopping cart.
    ACCT_DATA
    This contains the account assignment data for the shopping cart item.
    This means that you can now determine the G/L account irrespective of other item data (or any combination of item data) and overwrite field ACCT_DATA-G_L_ACCT.
    Example
    For the product category OFFICE SUPPLIES in conjunction with account assignment type CC (cost center), the system determines G/L account 400000. However, you also want to take into account the company code (field ITEM_DATA-CO_CODE) when determining the G/L account. The system is to make postings to G/L account 410000 for company code 0002. So you overwrite field ACCT_DATA-G_L_ACCT with 410000.
    <u>I recommend, In future, Please read the relevant documetation of any of the BADIs in SE18 Transaction, before implemnting the same, to get the details.</u>
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • System is not set to changable - objects are not changeable

    Hi Gurus,
    I am trying to open a query in the test system. while opening the query a error message is showing like: system is not set to changable - objects are not changeable.
    Kinly let me know how to solve this error.
    Due to this reason in my Plannin modler screen its showing that query is inconsistant,
    Regards
    Sajid khan
    Edited by: sajid.khan on Jun 22, 2010 9:35 AM

    Hi.
    In RSA1->Transport connection->ShftCtrl0 check whether you have any transport request connected.
    In addition ensure in "objects changebility" that you can change queries.
    Regards.

  • RFQ which are not converted to PO

    I want to diplay all RFQ which are not converted to PO.
    Is there any BAPI or FM ?
    or How to fetch data ?from which table ?
    thanks
    kumar

    I would disagree with the above reply.
    I would rather suggest you to use ekpo..
    for the rfq no and item query ekpo and pass rfq no and item no in the fields anfnr and anfps. This will give you the PO number/item in ebeln and ebelp.
    not the best method... but this works. Or you have to go to the PR of the RFQ and check the status whether PO has been created or not. But you don't always have the RFQ created from PO so this will not be a good option.

  • Copying is incomplete because specified condition record key values are not

    Hi All
    The User wanted to create new condition records by copying the existing condition records.
    For the same, I have maintained coping rule for condition.
    After that when I am trying to copy the existing condition record, I am faced with an error
    "copying is incomplete because specified condition record key values are not compatible"
    Please help me to solve this error. This of severty HIGH.
    PLEASE GIVE ME AN IMMEDIATE SOLN
    THANKS
    Kumar

    Hi, Is the source key combination same as target key combination? seems like that's the issue.
    Regards
    RS.

  • Table changes in database are not captured in ODI model level

    Hi All,
    Can any one help me how to fix the bug in ODI.
    Table changes in database are not captured in ODI model level.
    Thanks in advance

    I created the interface which is running successfully.
    Now i did some changes in target table(data base level).
    I reversed the updated table in model section. Till here its ok
    The table which is updated in the model section is not automatically updated in the interface.
    I have to drop the existed datastore in the interface and and re do the entire process of bringing the updated datastore, mapping,etc..
    Please tell the any alternate way.
    Regards
    suresh

  • Column Heading are not displayed in ALV Report using CL_SALV_DISPLAY?

    Hi,
       I am using CL_SALV_DISPLAY class to display data. I Created an Internal Table Dynamically based fieldcatalog which was prepared based data at run time. When i displayed data using CL_SALC_DISPALY data is display in output but column headings are not displayed.
    can anyone suggest me how to display heading in ALV using CL_SALV_DISPLAY class, My code is
          CLASS lcl_report DEFINITION
    CLASS lcl_report DEFINITION.
      PUBLIC SECTION.
        METHODS:
          display  IMPORTING l_table  TYPE string
                             l_fcat   TYPE string.
    ENDCLASS.                    "lcl_report DEFINITION
          CLASS lcl_report IMPLEMENTATION
    CLASS lcl_report IMPLEMENTATION.
      METHOD display.
        DATA: gr_table   TYPE REF TO cl_salv_table.
        DATA: gr_columns TYPE REF TO cl_salv_columns_table,
              gr_column  TYPE REF TO cl_salv_column_table,
              ls_fcat    TYPE slis_fieldcat_alv.
        DATA: gr_display TYPE REF TO cl_salv_display_settings.
        DATA: l_o_functions TYPE REF TO cl_salv_functions_list,
              l_field    TYPE string.
        FIELD-SYMBOLS : <fs_table>    TYPE STANDARD TABLE,
                        <ft_fcat>     TYPE STANDARD TABLE.
    Get the ALV object refering to the output table
        ASSIGN (l_table) TO <fs_table>.
        ASSIGN (l_fcat)  TO <ft_fcat>.
        TRY.
            cl_salv_table=>factory(
              IMPORTING
                r_salv_table = gr_table
              CHANGING
                t_table      = <fs_table> ).
          CATCH cx_salv_msg.                                "#EC NO_HANDLER
        ENDTRY.
    Add basic default functionality in the ALV report
    Functions
        l_o_functions = gr_table->get_functions( ).
        l_o_functions->set_all( abap_true ).
        gr_columns = gr_table->get_columns( ).
        gr_columns->set_headers_visible( abap_true ).
    Display the list
        gr_table->display( ).
      ENDMETHOD.                    "extract
    ENDCLASS.                    "lcl_report IMPLEMENTATION
    *& start-of-selection declaration
    START-OF-SELECTION.
      PERFORM :
      get store codes
        get_storecodes    USING      p_stfile
                          CHANGING   it_t001w,
      fetching mard data
        read_mard_data,
      preparing fieldcatalog for Final Data
        create_filedcat   USING      it_t001w
                                     it_site
                          CHANGING   it_fieldcat,
      preparing structure & internal table for Final Data
        create_final_table_structure  USING  it_fieldcat,
      prepare output data
        prepare_final_data.
    *& end-of-selection declaration
    END-OF-SELECTION.
      PERFORM :
      display data
        display_data    USING l_table
                              l_fcat.
    *&      Form  get_storecodes
    FORM get_storecodes  USING    p_p_stfile
                         CHANGING p_it_t001w  LIKE it_t001w[].
      DATA  :
    internal table for RAW
      lt_raw    TYPE truxs_t_text_data,
      rs_site   LIKE LINE OF rt_site,
      l_index   LIKE sy-tabix.
      FIELD-SYMBOLS :
    field symbol for it_t001w
      <fs_t001w>   LIKE LINE OF p_it_t001w.
    calling function module to get Stores Data from File
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_line_header        = 'X'
          i_tab_raw_data       = lt_raw
          i_filename           = p_p_stfile
        TABLES
          i_tab_converted_data = p_it_t001w[]
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
        EXIT.
      ENDIF.
      SORT p_it_t001w BY werks.
      CLEAR rs_site.
      rs_site-sign   = 'I'.
      rs_site-option = 'EQ'.
      rs_site-low    = p_dccode.
      APPEND rs_site TO rt_site.
      IF it_t001w[] IS NOT INITIAL.
        LOOP AT p_it_t001w ASSIGNING <fs_t001w>.
          l_index   = sy-tabix.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = <fs_t001w>-werks
            IMPORTING
              output = <fs_t001w>-werks.
          MODIFY p_it_t001w FROM <fs_t001w> INDEX l_index.
          IF <fs_t001w>-werks GE s_site-low AND <fs_t001w>-werks LE s_site-high.
          append site to ranges
            CLEAR rs_site.
            rs_site-sign   = 'I'.
            rs_site-option = 'EQ'.
            rs_site-low    = <fs_t001w>-werks.
            APPEND rs_site TO rt_site.
            CONTINUE.
          ENDIF.
        ENDLOOP.
        SORT p_it_t001w BY werks.
        SORT rt_site.
      ENDIF.
    ENDFORM.                    " get_storecodes
    *&      Form  create_final_table_structure
    FORM create_filedcat   USING    p_it_t001w      LIKE it_t001w[]
                                    p_it_site       LIKE it_site[]
                           CHANGING p_it_fieldcat   LIKE it_fieldcat[].
      FIELD-SYMBOLS :
    field symbol for p_it_t001w
      <fs_t001w>     LIKE LINE OF p_it_t001w,
    field symbol for p_it_site
      <fs_site>      LIKE LINE OF p_it_site.
      DATA :
    fieldname
      l_fieldname    TYPE slis_fieldname,
    workarea for site ranges
      rs_site        LIKE LINE OF rt_site.
      CLEAR : l_fieldname, rs_site.
      l_fieldname    = p_dccode.
      PERFORM
    prepare fieldcatalog
      build_fieldcatalog USING :   'MTART'      'CHAR'        '5'  ,
                                   'MTBEZ'      'CHAR'        '25' ,
                                   'MATKL'      'CHAR'        '6'  ,
                                   'WGBEZ'      'CHAR'        '20' ,
                                   'MATNR'      'CHAR'        '18' ,
                                   'MAKTX'      'CHAR'        '30' ,
                                    l_fieldname 'CHAR'        '17' .
    create header for excel
      PERFORM create_excel_header USING  : 'Division',
                                           'Divsion Description',
                                           'MC Code',
                                           'MC Description',
                                           'Article',
                                           'Article Description',
                                            l_fieldname.
    loop for creating fieldcatalog
      LOOP AT it_site ASSIGNING <fs_site>.
        READ TABLE it_t001w ASSIGNING <fs_t001w> WITH KEY werks = <fs_site>-werks
                                                                  BINARY SEARCH.
        IF sy-subrc = 0           AND <fs_t001w> IS ASSIGNED AND
           <fs_site> IS ASSIGNED  AND <fs_site>-stock GT 0.
          CLEAR : l_fieldname, rs_site.
          l_fieldname    = <fs_site>-werks.
        prepare fieldcatalog
          PERFORM build_fieldcatalog USING : l_fieldname    'CHAR'   '17'.
        create header for excel
          PERFORM create_excel_header USING  l_fieldname  .
          CONTINUE.
        ENDIF.
      ENDLOOP.
      l_fcat  = 'it_fieldcat[]'.
    ENDFORM.                    " create_final_table_structure
    *&      Form  build_fieldcatalog
    FORM build_fieldcatalog  USING    p_fieldname      TYPE slis_fieldname
                                      p_datatype       TYPE datatype_d
                                      p_length         TYPE intlen.
      DATA : ls_fieldcat    LIKE LINE OF it_fieldcat.
      CLEAR  : ls_fieldcat.
      ls_fieldcat-fieldname   = p_fieldname.
      ls_fieldcat-datatype    = p_datatype.
      ls_fieldcat-intlen      = p_length.
      APPEND ls_fieldcat TO it_fieldcat.
    ENDFORM.                    " build_fieldcatalog
    *&      Form  create_final_table_structure
    FORM create_final_table_structure  USING    p_it_fieldcat.
    Create dynamic internal table and assign to FS
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = it_fieldcat
        IMPORTING
          ep_table        = t_table.
      ASSIGN t_table->*  TO <ft_final>.
    ENDFORM.                    " create_final_table_structure
    *&      Form  create_excel_header
    FORM create_excel_header  USING    p_p_fieldname.
      DATA : ls_header  LIKE LINE OF it_header.
      CLEAR ls_header.
      ls_header-col_name  = p_p_fieldname.
      APPEND ls_header TO it_header.
    ENDFORM.                    " create_excel_header
    *&      Form  prepare_final_data
    FORM prepare_final_data .
      DATA          : l_matnr       LIKE g_matnr,
                      l_werks       LIKE g_werks,
                      l_index       LIKE sy-tabix.
      FIELD-SYMBOLS : <fs_mard>     LIKE LINE OF it_mard.
    Getting No. of Lines in IT_MARD internal table
      DESCRIBE TABLE it_mard LINES g_lines.
      LOOP AT it_mard ASSIGNING <fs_mard>.
        l_index    = sy-tabix.
        IF l_matnr IS INITIAL.
          l_matnr  = <fs_mard>-matnr.
          CLEAR : l_werks.
          l_werks    = <fs_mard>-werks.
          UNASSIGN : <fs_value>, <fs_final>.
        Create dynamic work area and assign to FS
          CREATE DATA t_line LIKE LINE OF <ft_final>.
          ASSIGN t_line->*   TO <fs_final>.
          ASSIGN COMPONENT 'MATNR'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_mard>-matnr.
          ASSIGN COMPONENT l_werks  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_value> + <fs_mard>-labst.
        getting Article Type,MC & its Descriptions
          PERFORM get_other_data    USING     l_matnr
                                              l_werks.
        ELSEIF l_matnr <> <fs_mard>-matnr.
          APPEND <fs_final> TO <ft_final>.
          CLEAR l_matnr.
          l_matnr  = <fs_mard>-matnr.
          CLEAR : l_werks.
          l_werks    = <fs_mard>-werks.
          UNASSIGN : <fs_value>, <fs_final>.
        Create dynamic work area and assign to FS
          CREATE DATA t_line LIKE LINE OF <ft_final>.
          ASSIGN t_line->*   TO <fs_final>.
          ASSIGN COMPONENT 'MATNR'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_mard>-matnr.
          ASSIGN COMPONENT l_werks  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_value> + <fs_mard>-labst.
        getting Article Type,MC & its Descriptions
          PERFORM get_other_data    USING     l_matnr
                                             l_werks.
        ELSE.
          CLEAR : l_werks.
          l_werks    = <fs_mard>-werks.
          ASSIGN COMPONENT l_werks  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_value> + <fs_mard>-labst.
        ENDIF.
        IF l_index = g_lines.
          APPEND <fs_final> TO <ft_final>.
        ENDIF.
      ENDLOOP.
      l_table  = '<ft_final>[]'.
    ENDFORM.                    " prepare_final_data
    *&      Form  get_other_data
    FORM get_other_data  USING    p_l_matnr
                                  p_l_werks.
      FIELD-SYMBOLS : <fs_mara>     LIKE LINE OF it_mara,
                      <fs_t023t>    LIKE LINE OF it_t023t,
                      <fs_t134t>    LIKE LINE OF it_t134t,
                      <fs_makt>     LIKE LINE OF it_makt.
      READ TABLE it_mara ASSIGNING <fs_mara> WITH KEY matnr = p_l_matnr.   " BINARY SEARCH.
      IF sy-subrc = 0 AND <fs_mara> IS ASSIGNED.
        ASSIGN COMPONENT 'MTART'  OF STRUCTURE <fs_final> TO <fs_value>.
        <fs_value>        = <fs_mara>-mtart.
        ASSIGN COMPONENT 'MATKL'  OF STRUCTURE <fs_final> TO <fs_value>.
        <fs_value>        = <fs_mara>-matkl.
        READ TABLE it_makt  ASSIGNING <fs_makt>  WITH KEY matnr =  <fs_mara>-matnr   BINARY SEARCH.
        IF sy-subrc = 0 AND <fs_makt> IS ASSIGNED.
          ASSIGN COMPONENT 'MAKTX'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>        = <fs_makt>-maktx.
        ENDIF.
        READ TABLE it_t023t ASSIGNING <fs_t023t> WITH KEY matkl = <fs_mara>-matkl  BINARY SEARCH.
        IF sy-subrc = 0 AND <fs_t023t> IS ASSIGNED.
          ASSIGN COMPONENT 'WGBEZ'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>      = <fs_t023t>-wgbez.
        ENDIF.
        READ TABLE it_t134t ASSIGNING <fs_t134t> WITH KEY mtart = <fs_mara>-mtart  BINARY SEARCH.
        IF sy-subrc = 0 AND <fs_t134t> IS ASSIGNED.
          ASSIGN COMPONENT 'MTBEZ'  OF STRUCTURE <fs_final> TO <fs_value>.
          <fs_value>      = <fs_t134t>-mtbez.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_other_data
    *&      Form  display_data
          text
    FORM display_data  USING    p_l_table
                                p_l_fcat.
      DATA:
    Variable for Object Creation
      o_report TYPE REF TO lcl_report.
      CREATE OBJECT o_report.
      o_report->display( EXPORTING l_table = p_l_table
                                   l_fcat  = p_l_fcat ).
    ENDFORM.                    " display_data

    I don't know how to read the code you pasted or I would have checked this myself.
    Do your fields in the internal table reference dictionary objects or elementary types? If not using dictionary types, the column names will be blank by default. If you can't change your fields to be dictionary types, you can try this to change the column names:
    I made a method inside my local class to add the names:
            call method set_colname
              EXPORTING iv_tab = alv_tab
                        iv_colid = 'xxxx'  "fieldname from the table
                        iv_stxt = text-t54
                        iv_mtxt = text-t55
                        iv_ltxt = text-t55.
    METHOD set_colname .
      data:
              alv_cols type REF TO cl_salv_columns_table,
              alv_col type REF TO cl_salv_column.
      TRY .
    *... Change fieldnames
            call METHOD iv_tab->get_columns RECEIVING value = alv_cols.
            call method alv_cols->get_column EXPORTING columnname = iv_colid RECEIVING value = alv_col.
            IF iv_stxt <> ''.
              CALL METHOD alv_col->set_short_text EXPORTING value = iv_stxt.
            ENDIF.
            IF iv_mtxt <> ''.
              CALL METHOD alv_col->set_medium_text EXPORTING value = iv_mtxt.
            ENDIF.
            IF iv_ltxt <> ''.
              CALL METHOD alv_col->set_long_text EXPORTING value = iv_ltxt.
            ENDIF.
       CATCH cx_salv_not_found.
      ENDTRY.
    ENDMETHOD. "set_colname

  • PO report for which RFQ reference  are not existed

    Hi Experts,
    I want to see all the PO's which are not having RFQ as reference Documents.Kindly tell me what report I  can use.
    Regards,
    Sri.........

    Hi
    Try T-Code ME4N Purchasing Document by RFQ Number. If it doesn't meet your requirement. You need to develope a report as required.
    Regards,
    Sadiq

  • SET command and column heading are not working

    Hi All,
    Am trying to create sql reports using SET and Column headings as given below.It's saying missing or invalid option.
    But when i execute this in SQL*PLUS it's working fine.. is this limitation in AE edition. Please advice.
    Also tried with sql script execution, still same problem.
    set pagesize 100;
    set linesize 80;
    column ename heading "employee name";
    select * from emp;
    Regards,
    Anil

    user575819 wrote:
    Please update your forum profile with a real handle instead of "user575819".
    Am trying to create sql reports using SET and Column headings as given below.It's saying missing or invalid option.
    But when i execute this in SQL*PLUS it's working fine.. is this limitation in AE edition. Please advice.
    Also tried with sql script execution, still same problem.
    set pagesize 100;
    set linesize 80;
    column ename heading "employee name";
    select * from emp;
    SET and COLUMN are SQL*Plus client commands, not part of the SQL language, and thus they cannot be used in APEX report queries. Consult the APEX documentation for information on creating reports. If you are unfamiliar with APEX, start with the 2 Day Developer's Guide tutorial, which covers creating APEX reports.

  • Images in some Column-Heads are not visible

    Hi there,
    in an Webdynpro-Application I am using tables that are sorted in that way that is discribed in the Tables-Tutorial (with TableSort-Class). Everything works fine except that initially there is no image in the column-head although I set one in the layout-designer. After sorting the apropriate images appear.
    I tried to set the image-source again, I tried to set the image in the source like:
    <i>IWDTable table = (IWDTable)view. ...
    table.getColumns()[...].getHeader().setImageSource("...");</i>
    ... doesn't work.
    Are there solutions? Thanks!<i></i>

    Hi,
    Your code is right. but i think you have placed the setImageSource code before the call of Table Sorter class.
    if you put that code after the object creation of TableSorter class, it will work.
    regards
    Karthik

  • Title photos of web galleries are not changeable?

    Dear everybody,
    I've been trying to change the "title photo" of some of my web galleries - that is the picture a viewer sees first when entering the gallery overview. Simply putting the desired picture in first place via iphoto doesn't do the job. Do you think it is necessary to create a new gallery each time I want to change the title photo?
    Help and ideas appreciated!
    Thanks in advance.
    Keywan

    Open iPhoto's preferences and go to the Web Gallery section. There you can change the overall name of the Web Gallery Title that is seen online.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • USB videos are not supported by the head rest monitor?

    HI,
    I purchase an XAV712bt HU in India. The video out from the DVD/CD is displayed in both the screens (HU&Head rest moniter). But the video files in the USB is displayed only in HU and not in the head rest moniter.
    Could you please any one help me sort this issue and get USB video output in Headrest moniter.
    thanks,
    Mahendran P

    When is Apple going to ... allow us to use USB 3 on a Mac Platform.
    Maybe in 2011 when Intel starts using it? There's a website for this here:
    http://www.mac-usb3.com/index.html
    You were simply cheated on ebay I think.
    In any case, you can tell them what you want here:
    http://www.apple.com/feedback/macosx.html

  • Usage reports are not getting in site collection level

    Verifiedthatusage
    data collection is enabled.
    Verified that Analytics Usage, Feature Use, and
    Page Requests are selected under the
    Events to Log.
    Verified that jobs Microsoft SharePoint Foundation Usage Data Import and
    Microsoft SharePoint Foundation Usage Data Processing scheduled and are working fine under
    Log Collection Schedule
    Verified that Analytics Usage definition Receivers is defined.
    Verified that Page Request usage definition Receivers is defined.
    Verified that both managed accounts (admin & service accounts) is having permissions to database in production environment.
    Verified that Search crawl also working fine.
    Usage File is getting created successfully-see attached
    (typically found
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS\Request Usage)
    In this folder, a .usage file should be getting created if all above steps are healthy and working correctly. Ideally we will see a *.tmp file and periodically
    a *.usage file is getting generated.
    As a last option we have tried by re-creating the Usage service application with above steps.

    The amount and variety of formatting makes reading your post very difficult.
    You have contradictory information there; is this for SharePoint 2013, if so this is in the wrong forum, or is this for 2010 in which case your title is misleading.
    You have not described your issues very clearly. I believe that you cannot see site collection analytics, are these blank/empty or throwing an error? Are the usage files appearing in the expected location?
    Have you checked the timer jobs that run nightly to compile the analytics reports?

  • IViews are not updated in customized top level navigation

    Hi experts,
    I am working on External Facing Portal. I developed customized top level navigation. The problem is that the content area of External Facing portal is not refreshed. Although, i can see different navigationURLs but content area iView remains same. For testing purpose, i assigned role (which i created for anonymous access) to a new portal user. All pages/ivews/ for that role are working fine and content area is also updated when i click on different navigation. Remember that is standard portal not anonymous. It means through myserver:50100/irj/protal?NavigationTarget=navurl://cb0c473832f39033f88904647de63252 all navigation is working fine including content area but when i access External Facing Portal through  myserver:50100/irj/protal/anonymous?NavigationTarget=navurl://cb0c473832f39033f88904647de63252 navigationURLs is updated but the content area remains same. Content area contains 1 page and page itself contains 1 iVew. I assigned that light page to Light Framework page.
    Do i need to implement navigation connectors for that issue or i miss something?
    waiting for your response.
    regards
    Abbas

    Have you tried disabling the iView caching (check the iView and page properties). Your browser and proxy server (as you mention it is external facing) may also be caching the content, hence the reason when you use your user ID and the Java restart occurs everything is reset correctly.
    I know when doing Visual Composer developments that SAP EP caches the Function Module interfaces and that in the development environment I needed to change parameters in Visual Admin for the VC component lifetime to handle these. It could well be that you are referencing components that have lifetime keep alive set for them in the environment too. Refer to the API / SDK documentation if you suspect this could be the case for you too.
    What exactly is the iView in the content area doing? Is it just a transactional iView or is it a custom iview?
    If you can perhaps try putting on an http trace or monitor the NWA logs to determine if any issues exist. You Java VM may also require some more fine tuning in the external facing scenario - the GC may not be collecting items efficiently.

  • Order Header Text not copied to Invoice Header

    Hi All friends
    I have created text id for copiying sales order header to invoice header in votxn. I assign in text procedure of sales order as well as Invoice text procedure. I create sales order with maintaining text ID But when i created invoice with same sales order text id is not copied. Please suggest me what steps i should take and what Access sequence i must maintain to copy text from Sales order to Invoice.
    I have maintained the access sequence and maintain the required text id in access sequence. But system is only access the first text id from order header to Invoice header not other text id  which i maintain in order.
    Regards
    Shambhu
    Edited by: SHAMBHU SARKAR on Dec 29, 2008 12:30 PM

    Hi shambu
    while doing text determination in one step in i think in text id's in text procedures, maintain as TEXT IS OBLIGATORY AND SHOULD BE DISPLAYED WHILE COPYING.
    Text is obligatory and displayed when Transferring - whatever text you have entered in the sales order that will be copied into preceding document say delivery or billing
    Regards
    Srinath

Maybe you are looking for

  • Invoking bpel process from java in oracle soa/bpm 11g

    Hi, We have some java code to invoke bpel process in oracle BPM 10g following the instructions in http://download-east.oracle.com/docs/cd/B14099_19/integrate.1012/b14448/invoke.htm. Basically the steps are: 1) get a Locator (com.oracle.bpel.client.Lo

  • Dump by running 0Orgunit_attr Datasource in R/3

    Hi Gurus, i am facing a problem by executing 0Orgunit_attr in the quality system. In D System evry thing is ok. By executing the 0Orgunit_ATTR extractor in RSA3 in R/3, i had a dump. The Error is as follow: Runtime Errors ITAB_DUPLICATE_KEY Date and

  • Oracle 8.1.5.1 upgrade to 9.2.0.6 sql - Oracle change or bug ?

    The following query is working on Oracle 8.1.5.1 (result 1 record), but not on Oracle 9.2.0.6 (result 0 record). We don't have the source to this application, and we then have to solve it on the Oracle side - it looks like an Oracle change/bug ? I've

  • Append data into the file in application server

    Hi Friends, I have an issue where i have a job which has three different stepst for same program. If i run the job the program will create a file in the application server and append the other two steps in the same file without overwriting the file o

  • XI3.0 BPM collect message using substring within correlation

    Hi, I have a requirement to collect a list of IDOCS using the first three characters of a field as a correlation.  I tried adding the XPATH expression substring(/ArticlePriceData/ArticlePrice/Site, 1, 3) within the correlation editor but this does no