Quantcast
Channel: SCN : All Content - All Communities
Viewing all 8545 articles
Browse latest View live

Problem with exception 'CX_SALV_OBJECT_NOT_FOUND'

$
0
0

Hello everbody:

 

I have the next excecption when I run my code : cx_salv_objetc_not_found

 

This is my code:

 

 

REPORT  ZABRE005.

*----------------------------------------------------------------------*

* INCLUDES                                                             *

*----------------------------------------------------------------------*

INCLUDE ZABRE005A.           "Datos y Parametros Globales

INCLUDE ZABRE005B.           "Subrutinas

 

*----------------------------------------------------------------------*

* Proceso Principal

*----------------------------------------------------------------------*

START-OF-SELECTION.

 

   PERFORM f_get_data.

 

END-OF-SELECTION.

 

   IF NOT gt_data[] IS INITIAL. "is initial = vacia, if not tab[] is inital = sino  esta vacia ejecuta perform

     PERFORM f_procesar.

     PERFORM f_alv_grid_display.

   ENDIF.



**************************************************************************************************************************************



*&---------------------------------------------------------------------*

*&  Include           ZABRE005A

*&---------------------------------------------------------------------*

 

*----------------------------------------------------------------------*

* Includes

*----------------------------------------------------------------------*

INCLUDE <icon>.

 

*----------------------------------------------------------------------*

* TABLES / NODES

*----------------------------------------------------------------------*

TABLES: sflight.

 

*----------------------------------------------------------------------*

* Tipos

*----------------------------------------------------------------------*

TYPES: BEGIN OF ty_data.

         INCLUDE STRUCTURE sflight.

TYPES:

         carrname  TYPE s_carrname,

         cityfrom  TYPE s_from_cit,

         cityto    TYPE s_to_city.

TYPESEND OF ty_data.

 

*----------------------------------------------------------------------*

* Tablas / Estructuras

*----------------------------------------------------------------------*

DATA: gt_data TYPE TABLE OF ty_data,

       gs_data TYPE ty_data.

 

*----------------------------------------------------------------------*

* Reporte ALV

*----------------------------------------------------------------------*

DATA:

   r_container TYPE REF TO cl_gui_custom_container,

   lr_columns TYPE REF TO cl_salv_columns_table,

   lr_column  TYPE REF TO cl_salv_column,

   alv_table TYPE REF TO cl_salv_table. "referencia a la clase table del alv

 

** Declaration for ALV Grid **

DATA : gr_table TYPE REF TO cl_salv_table.

 

** Declarations for ALV Functions

DATA : gr_functions TYPE REF TO cl_salv_functions_list.

 

** Declarations for ALV Events

DATA: gr_events TYPE REF TO cl_salv_events_table.

 

 

** declaration for ALV Columns

DATA : gr_columns TYPE REF TO cl_salv_columns_table,

        gr_column_table  TYPE REF TO cl_salv_column_table,

        gr_column  TYPE REF TO cl_salv_column,

        lt_column_ref TYPE salv_t_column_ref,

        ls_column_ref TYPE salv_s_column_ref.

 

** declaration for Layout Settings

DATA : gr_layout TYPE REF TO cl_salv_layout,

        gr_layout_key TYPE salv_s_layout_key,

        ls_layout TYPE salv_s_layout,

        lt_layout_info TYPE salv_t_layout_info.

 

** Declaration for Global Display Settings

DATA : gr_display TYPE REF TO cl_salv_display_settings,

        lv_title   TYPE lvc_title.

 

** Declaration for Aggregate Function Settings

DATA : gr_aggr    TYPE REF TO cl_salv_aggregations.

 

** Declaration for Sort Function Settings

DATA : gr_sort    TYPE REF TO cl_salv_sorts.

 

** Declaration for Table Selection settings

DATA : gr_select  TYPE REF TO cl_salv_selections.

 

** Declaration for Top of List settings

DATA : gr_content TYPE REF TO cl_salv_form_element.

 

DATA:

*- Individual Column

       lt_salv_not_found   TYPE REF TO   cx_salv_not_found,

*- Exception class

         lv_msg              TYPE          string,

         lv_col_l            TYPE          scrtext_l,

         lv_col_m            TYPE          scrtext_m,

         lv_col_s            TYPE          scrtext_s.

 

*----------------------------------------------------------------------*

* Parametros

*----------------------------------------------------------------------*

SELECT-OPTIONS:

   s_carrid FOR sflight-carrid,

   s_connid FOR sflight-connid,

   s_fldate FOR sflight-fldate.

 

*----------------------------------------------------------------------*

* CLASS lcl_handle_events DEFINITION

*----------------------------------------------------------------------*

*

*----------------------------------------------------------------------*

CLASS lcl_handle_events DEFINITION.

   PUBLIC SECTION.

     METHODS:

     on_user_command FOR EVENT added_function OF cl_salv_events       IMPORTING e_salv_function,

     hotspot_click   FOR EVENT link_click     OF cl_salv_events_table IMPORTING row column.

ENDCLASS. "lcl_handle_events DEFINITION

 

DATA:

     event_handler TYPE REF TO lcl_handle_events.





***********************************************************************************************************************************************


*&---------------------------------------------------------------------*

*&  Include           ZABRE005B

*&---------------------------------------------------------------------*

 

*----------------------------------------------------------------------*

* CLASS lcl_handle_events IMPLEMENTATION

*----------------------------------------------------------------------*

*

*----------------------------------------------------------------------

CLASS lcl_handle_events IMPLEMENTATION.

   METHOD on_user_command.

     CASE sy-ucomm.

*      WHEN 'SNDTIM'.

*        PERFORM f_sndtim_data.

*      WHEN 'SNDCAN'.

*        PERFORM f_sndcan_data.

*      WHEN 'IMPXML'.

*        PERFORM f_impxml_data.

*      WHEN 'VIEXML'.

*        PERFORM f_viexml_data.

       WHEN 'REFRESH'.

         PERFORM f_refresh_data.

*      WHEN 'BDS'.

*        PERFORM f_bds_data.

*      WHEN 'DELETE'.

*        PERFORM f_delete_data.

*      WHEN 'MAIL'.

*        PERFORM f_mail_data.

*      WHEN 'PDF'.

*        PERFORM f_pdf_data.

*      WHEN 'PRNCFDI'.

*        PERFORM f_print_data.

*      WHEN OTHERS.

     ENDCASE.

   ENDMETHOD. "on_user_command

 

 

*    Method that check the event of double click in the grid         *

   METHOD hotspot_click.

     READ TABLE gt_data INDEX row INTO gs_data.

     CHECK sy-subrc = 0.

     CASE column.

       WHEN 'CARRID'.

         CALL FUNCTION 'DR_DISPLAY_CARRID'

           EXPORTING

             carrid = gs_data-carrid.

 

*        SET PARAMETER ID 'VF' FIELD gs_data-vbeln.

*        CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.

*      WHEN 'KUNRG'.

*        SET PARAMETER ID 'KUN' FIELD gs_data-kunrg.

*        CALL TRANSACTION 'FD03' AND SKIP FIRST SCREEN.

*      WHEN 'BELNR'.

*        SET PARAMETER ID 'BLN' FIELD gs_data-belnr.

*        SET PARAMETER ID 'BUK' FIELD gs_data-bukrs.

*        SET PARAMETER ID 'GJR' FIELD gs_data-gjahr.

*        CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN.

     ENDCASE.

   ENDMETHOD.                    "handle_double_click

ENDCLASS. "lcl_handle_events IMPLEMENTATION

*&---------------------------------------------------------------------*

*&      Form  F_GET_DATA

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*  -->  p1        text

*  <--  p2        text

*----------------------------------------------------------------------*

FORM f_get_data .

 

   REFRESH gt_data.

   SELECT *

   INTO CORRESPONDING FIELDS OF TABLE gt_data

   FROM sflight AS a

   LEFT OUTER JOIN scarr AS b ON b~carrid = a~carrid

   LEFT OUTER JOIN spfli AS c ON c~carrid = a~carrid AND

                                 c~connid = a~connid

   WHERE

     a~carrid IN s_carrid AND

     a~connid IN s_connid AND

     a~fldate IN s_fldate.

 

ENDFORM.                    " F_GET_DATA

*&---------------------------------------------------------------------*

*&      Form  F_PROCESAR

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*  -->  p1        text

*  <--  p2        text

*----------------------------------------------------------------------*

 

 

FORM f_procesar .

   FIELD-SYMBOLS: <fs_data> TYPE ty_data.

   LOOP AT gt_data ASSIGNING <fs_data>.

 

   ENDLOOP.

ENDFORM.                    " F_PROCESAR

*&---------------------------------------------------------------------*

*&      Form  F_ALV_GRID_DISPLAY

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*  -->  p1        text

*  <--  p2        text

*----------------------------------------------------------------------*

FORM f_alv_grid_display .

   CLEAR : gr_table.

 

   TRY.

       CALL METHOD cl_salv_table=>factory

         EXPORTING

           list_display = if_salv_c_bool_sap=>false

         IMPORTING

           r_salv_table = gr_table

         CHANGING

           t_table      = gt_data.

 

     CATCH cx_salv_msg .

   ENDTRY.

   IF gr_table IS INITIAL.

     MESSAGE 'Error Creando ALV Grid ' TYPE 'I' DISPLAY LIKE 'E'.

     STOP.

   ENDIF.

 

** SET PF-STATUS

   gr_table->set_screen_status(

           pfstatus = 'SALV_TABLE_STANDARD'

           report = sy-repid

           set_functions = gr_table->c_functions_all ).

 

** Set Customer Events

   gr_events = gr_table->get_event( ).

 

   CREATE OBJECT event_handler.

   SET HANDLER event_handler->on_user_command  FOR gr_events.

   SET HANDLER event_handler->hotspot_click    FOR gr_events.

 

** Get functions details

   gr_functions = gr_table->get_functions( ).

 

** Activate All Buttons in Tool Bar

   gr_functions->set_all( if_salv_c_bool_sap=>true ).

 

******* Layout Settings  *******

 

 

 

 

   CLEAR : gr_layout, gr_layout_key.

   MOVE sy-repid TO gr_layout_key-report.                        "Set Report ID as Layout Key"

 

   gr_layout = gr_table->get_layout( ).                          "Get Layout of Table"

   gr_layout->set_key( gr_layout_key ).                          "Set Report Id to Layout"

   gr_layout->set_save_restriction( if_salv_c_layout=>restrict_none ). "No Restriction to Save Layout"

*  IF p_var IS INITIAL.

   gr_layout->set_default( if_salv_c_bool_sap=>true ).         "Set Default Variant"

*  ELSE.

*    gr_layout->set_initial_layout( p_var ).                     "Set the Selected Variant as Initial"

*  ENDIF.

 

******* Global Display Settings  *******

   CLEAR : gr_display.

   lv_title = text-t01.

   gr_display = gr_table->get_display_settings( ).               " Global Display settings"

   gr_display->set_striped_pattern( if_salv_c_bool_sap=>true )"Activate Strip Pattern"

   gr_display->set_list_header( lv_title ).                      "Report Header"

 

 

*- Get all the Columns

   gr_columns = gr_table->get_columns( ).

*- Set Column optimization

   gr_columns->set_optimize( 'X' ).

 

*  CALL METHOD  gr_table->set_toolbar_interactive.

*... §7 selections

   DATA: lr_selections TYPE REF TO cl_salv_selections.

 

   lr_selections = gr_table->get_selections( ).

 

*... §7.1 set selection mode

   lr_selections->set_selection_mode( if_salv_c_selection_mode=>row_column ).

*----------------------------------------------------------------------*

*  Set column names

*----------------------------------------------------------------------*

   TRY.

       gr_column ?= gr_columns->get_column( 'MANDT' ).

       gr_column->set_technical( abap_true ).

 

       gr_column_table ?= gr_columns->get_column( 'CARRID' ).

       gr_column_table->set_cell_type( if_salv_c_cell_type=>hotspot ).

*

*      gr_column_table ?= gr_columns->get_column( 'KUNRG' ).

*      gr_column_table->set_cell_type( if_salv_c_cell_type=>hotspot ).

 

 

 

*

*      gr_column_table ?= gr_columns->get_column( 'BELNR' ).

*      gr_column_table->set_cell_type( if_salv_c_cell_type=>hotspot ).

*

*      gr_column ?= gr_columns->get_column( 'XML_CNT' ).

*      gr_column->set_long_text( 'XML' ).

*      gr_column->set_medium_text( 'XML' ).

*      gr_column->set_short_text( 'XML' ).

*

*      gr_column ?= gr_columns->get_column( 'PDF_CNT' ).

*      gr_column->set_long_text( 'PDF' ).

*      gr_column->set_medium_text( 'PDF' ).

*      gr_column->set_short_text( 'PDF' ).

 

     CATCH cx_salv_not_found.

     CATCH cx_salv_existing.

     CATCH cx_salv_data_error.

   ENDTRY.

*----------------------------------------------------------------------*

* Excluir Botones

*----------------------------------------------------------------------*

*  TRY.

*      CALL METHOD gr_functions->set_function

*        EXPORTING

*          name    = 'SNDTIM'

*          boolean = space.

*

*    CATCH cx_salv_not_found .

*    CATCH cx_salv_wrong_call .

*  ENDTRY.

 

*----------------------------------------------------------------------*

* Mostrar Reporte

*----------------------------------------------------------------------*

   CALL METHOD gr_table->display.

ENDFORM.                    " F_ALV_GRID_DISPLAY

*&---------------------------------------------------------------------*

*&      Form  F_REFRESH_DATA

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*  -->  p1        text

*  <--  p2        text

*----------------------------------------------------------------------*

FORM f_refresh_data .

   PERFORM f_get_data.

   PERFORM f_procesar.

   gr_table->refresh( ).

ENDFORM.                    " F_REFRESH_DATA


Upper Case Descriptions

$
0
0

Hello Everyone,

 

I am using the standard IMPORT_IOBJ_MASTER package. We have always used this fine. I am trying to process improve something and need help. For one reason or another, our descriptions for Cost Centers in ECC are mixed cases (SOME ALL UPPER, some all lower, and some Proper Case.) In BPC, I would like to make everything UPPER.

 

My attempt at this was to do:

*MAPPING

ID=ID

EVDESCRIPTION=RSTXTMD

 

And then in the conversion file, do:

EXTERNALINTERNALFORMULA
**js: %external%.toUpperCase()

EDIT: The formula is getting cut off in my post, it's: js: %external%.toUpperCase()

 

However when I run the package, I get the following error:

  Description is not allowed to be created by mapping "EVDESCRIPTION"

 

 

Any ideas on what I might be doing wrong/a different way to do this? (Or if it just isn't possible in general?)

 

 

Thanks All!

Alex

query help

$
0
0

Greetings of the day.

we have about 4 pricelists for 2 for sales, 1 for purchase and 1 for distributors.  pricelist no 1 and 4 r for sales.

can someone help me with a query where in the item code is given and the pricelist no 1 and 4 is shown only?

secondly, reading from ur posts, its clarified that pricelist cannot be made default in item master screen, is there any workaround solution by addon?

Regards.

Autorizaciones Generales no se aplican

$
0
0

Buenas tardes a todos:

Tengo problemas para aplicar autorizaciones, efectuo la modificación, luego actualizo y al retornar a verificar el perfil del mismo usuario continua igual (no aplicó los cambios ejecutados). ¿que puede estas pasando?.

Esta operación la ejecuto como manager y tengo licencias profesionales.

Agradezco anticipadamente la ayuda que me puedan brindar.

 

License Server is not accessible on local SBO with my wireless active

$
0
0

Dear All,

 

I have installed SBO 9.0 complete setup on my laptop. The installation is successful with everything in place.

 

The problem happens when I do activate my wireless, the SAP Business One is not able to connect to license server.

 

Please note the moment I stop my wireless and restart license server, all is working fine.

 

I do not understand why is so. Is it because of new SLD where in I might be missing few mandatory configuration.

 

Please advise, it's urgent.

 

Best Regards,

Awadhesh

SLT and HANA deleting archived data

$
0
0

From the SLT Operations Guide, section 5.2 I can see the following statement

 

5.2 Archiving Data in Source Systems

The trigger-based replication also considers the deletion in source tables by archive activities (since it is not possible to distinguish on the database level between delete actions cause by archiving versus regular deletion of data records). As a consequence, SAP LT Replication Server will also replicate archiving activities as delete actions in the SAP HANA database.

 

In a typical standalone/sidecar implementation of SAP HANA, I would assume that in most cases this is not favorable behavior or a desired function. In typical DW/DataMart implementations, the data should be persisted in the target even after the source system data may have been archived. I can refer back to how BW operates in this caes - any new/changed data is extracted to BW, but any archiving operations do not affect the already extracted data in the target system.

 

I know there is functionality available to load archived data into HANA, but that would seem like a troublsome method to 'put the pieces back together' and get a wholistic picture of all the historical data (online data + archived objects) and would present some interesting challenges in the target (HANA).

 

Is there any way to disable the functionality to replicate deleted data due to archiving? Is there anyone with some experience navigating around this hurdle in a standalone/sidecar scenario that can shed some light as to how they handled this?

 

Thanks,

Justin

Inventory transfer with items managed by serial number

$
0
0
My platform  is:
SAP Business one 8.8
SQL Server 2008 standard
Windows Server 2008 r2
Barcode Lector Honeywel metrologic 9520
I'm trying create an inventory transfer in SAP Business One, with some items managed by serial number, using a barcode lector. My problem occurred when i select the series in the available list, the action generate a enter but i need that the action be a tab. I configured my barcode lector to that the suffix action be a tab, when i try in excel the tab action is successful but in SAP BO continue the action enter.
I need your help to indicate me, how i do?
Regards.

Check duplicate oins with stored procedures

$
0
0

Hi,

my customer wants check existing Customer Equipment Card.

I create this sp, but it doesn't work

 

 

 

 

 

Can you help me?

Thanks

 

Roberta Caterino


Disappearing Dock in Personas

$
0
0

I'm looking for a way to undo something I've done in Personas.  To duplicate the problem, make a copy of any transaction that utilizes a DockableContainer (IW56, for instance).

IW56 Screen1.PNG

 

Select the TableTreeView control and hide it.

IW56 Screen2.PNG

 

Now select the StretchableContainer that was beneath the TableTreeView and change the DockType from "Right" to "Hidden".

IW56 Screen3.PNG

 

IW56 Screen4.PNG

Notice that the container divider is now missing.  Save & Exit, then Edit the Flavor again.  Try to unhide the StretchableContainer or TableTreeView.  Everywhere I click in that section of the screen now only gives me access to UserArea.

IW56 Screen5.PNG

 

So, how do I get my Dock back to the way it was in the beginning, with the divider splitting the screen and my menu options to "Create Repair Order" unhidden?

Few Questions in SAP SD Module.

$
0
0

Hello All,


Can somebody help me out in answering the following questions?

1) How you will release change request in SD module? How often you release them?

2) How to create tasks. What are the maximum number of tasks you were created in you are previous project?

3) What is the difference between task and change request?

4) Is it possible to release change request, without releasing task.

5) Is functional module configuration comes under workbench request or customization request?


In addition to this can you please help me with some real time problems client faces in SAP SD Module?


Regards

Soma Das





MRP Run in APO OR ECC

$
0
0

Hi All,

Just need some inputs from experts

a FMCG company has implemented ECC as well APO they want to choose MRP in APO or ECC

ECC
1. stock on hand position is correct only on 2nd of the month

2. Lot Schedule line as production demand is open is ECC

3. Lot of unwanted PO, PRs are open in ECC

4. Production and alternate BOMs are used

 

APO

 

PPMs are created from ECC

In simulation version

PO, PR, SIT, SIH are loaded manually  and MRP run is taken as of now

 

Challenge - To find correct PPM for MRP run , since it is CIFed from ECC

 

 

 

Can some one  tell pro and cons of each system  ECC / APO for MRP

 

Regards

Umesh

 

 

 

Useful Customisation tip for Notification Types

$
0
0

Introduction & Objective:

A client wants that Notification Tabs should appear selectively for Create (IW21), Change(IW22) and Display(IW23) views. For example,  he does not want to provide Catalog & Codes tab (10/Tab10) during Create Notification (IW21).

 

Once we know the configuration point in SPRO, where to do this, this requirement looks simpler. But, more work is involved here. This document, elaborates the same.

 

The SPRO configuration path for this:

1.jpg

 

During Tab Additions, the key field which produces the desired effect, is theActivity Cat.

2.jpg

 

 

Please note that the ‘H – Add’ means Create and relates to IW21 screen.  Similarly 'V – Change'  and  'A – Display'  options relate to IW22 and IW23 screens respectively.

 

Now suppose a Notification type has the requirement for 3 main pages viz.,

10/Tab01– Notification 1

10/Tab07  -  Dates

10/Tab10– Catalogs & Codes

 

We know that 10/Tab10 will have sub tabs declared 20/Tab01, 02, 03, 04.

 

The following is the Tab strip Overviewin the SPRO, where no special conditions are required. Here we see the Activity Cat.field is blank.

 

In this Configuration, all tabs will be visible in all stages (IW21, IW22, IW23)

3.jpg

 

 

Now let's see, the Configuration as per our clients requirement, where Catalogs & Codes Tab not to be seen in 'Create' phase.

4.jpg

 

What we see here is for one simple condition, a number of line items added into the 'Tab strip Overview'.

This is because,

When we specify a value V in Activty Cat. Of 10/Tab10 (desiring to have this tab in change mode), all other tabs in change mode disappear. (10/Tab01, 10/Tab10).

So to restore them as per our requirement, we need to repeat these Tabs with different values of Activity Cat. (H, V, Aas the case may be) .

 

In Detail:

  1. We want the Header Tab (10/Tab01) in all modes Create, Change, Display (IW21, IW22, IW23) modes. So we need to create this entry 3 times with values H, VandA.
  2. We want the Dates Tab (10/Tab07) in Change and Display (IW22, IW23) modes only, so we had this 2 times with values V and A
  3. Like-wise we want the Catalogs & Codes Tab (10/Tab10) also in Change and Display (IW22, IW23) modes only, so we had this 2 times with values V and A.
  4. Here note that all the sub tabs (20/Tab01,02,03,04) of Catalogs & Codes Tab, had also to be created 2 times with values V and A to match with their Parent tab (10/Tab10).

 

 

Now let's see the resulting screens:

 

Create Notification (IW21)

5.jpg

 

 

Change Notification (IW22)

6.jpg

 

 

Display Notification (IW23)
7.jpg

(We know that Catalogs & Codes tab would appear in Display i.e., IW23, only when it has some content in its inside tabs.)

Like-wise we can customize deeply in this area as per need.

 

The Author recently was replying in detail, about the topic discussed here in an SCN thread, and felt that  forum will be benefited if this is documented .

 

 

Thank you

KJogeswaraRao

Produciton order component consumption from Stock

$
0
0

Dear PP Gurus

 

I have one case where as soon as Production order is created ,when i goto availability check for components the system shows few components are required where as stock is available when i check in MMBE for all those components under unrestricted use.

 

This problem has occurred recently where as for the same BOM and same Finished material this problem was not coming before.

Let me tell you that there was no modification in either routing nor BOM.

Also i have checked sotrage location allocation for components in Production order.

 

Regards

Abdul

F.05 Error: Postings to account 113600 are only possible in currency EUR

$
0
0

Account 113600 is currently set to EUR and F.05 is working for the EUR entries.

 

Previously, GL account 113600 was set to currency GBP and had postings in GBP. The GBP balance was set to 0 and the currency was updated to current setting in EUR. They have insisted on using the same GL rather than creating a new account.

 

Now, I can't seem to get resolve this error message during F.05 run:

 

Postings to account 113600 are only possible in currency EUR

 

Diagnosis:

G/L account "113600" is managed in "EUR". For this reason, it is not possible to post amounts in "GBP".

 

Why is F.05 picking up the GBP line items, if there is no balance?

 

Is there a way we can fix this error or remove the GBP from being picked up?


Points awarded for the answer... Thanks!

how to copy from infocube to keyfigure

$
0
0

hi

 

Some sales order quantities exists in  ECC that has been transferred to infocube ,now I wish I transfer those quantities in infocube to the keyfigure 9AHISTORY  (so that it is visible in SDP94 as 9AHISTORY)

How do I transfer ? your inputs are appreciated.

Should I go to “ load planning version screen” where I could see source / origin fileds ..plz let me know what are the t codes involved in transfer of quantities from infocube to keyfigure.

 

thanks


OBYC

$
0
0

Hi All

 

While doing GRN we are getting error as 3000 is not possible in KBS ....

 

In obyc KBS account determination is untick

 

 

They before yesterday we raised discussion but moderators is rejected ....we searched in Google past two days but nothing we got solution and even we send direct message to moderate r then also no response

 

Any body can help in this issues ???????????????

Error Installation SAP ITIM

$
0
0

Hello;

 

Issues the following error when installing SAP ITIM:

 

error_itim.png

 

SAP ITIM is installed in Windows Server 2008 R2 / SQL Server 2008 Sp2

 

If Reporting Services is installed on the server:

 

it_2.png

 

Please help!!!

 

Thanks

 

Luis Angel

SAP

$
0
0

Gives the following error when installing the SAP ITIM is:

error_itim.png

If the Reporting Services is installed on the server:

 

it_2.png

 

Plase help, thanks

 

Luis Angel

SAP on DB2 for Linux/uNIX/Windows

$
0
0



Problem 1
===========
Question :

Yesterday we found "SQL30081N Communication error has been detected" error on some application logs.

This is a central instance.

We already check DB2COMM and SVCNAME and it points to correct values (TCPIP and sapdb2<SID>).


Problem 2
===========
Question :

Getting below exception when trying to schedule statistic job from DB13.

*********************************************************************

Exception CX_DB6_CON in program CL_DB6_RDI_TABLE==============CP /
CL_DB6_RDI_TABLE==============CM001 at line ADBC error with r
Runstat_Tab:terminated with error
REASON=ADBC error

*********************************************************************

Looking on this error we found the SAP Note 1378499 - DB6: CLI error CLI0112E with "REORGCK_ALL" job
But note mention that is valod for SAP Release 7.00 and 7.11, our release version is 7.30 and DB release is Db6 9.7 FP8.

Could you please let us know if note apply to this release also or you have a different note for the mentioned release??


Problem 3
==========
Question :

DB license got expired and I am unable to apply new license.I had downloaded files 67837800102000002740 from SMP and try to apply license but was uncsuccessful.

Getting below error

'LIC1450I The product licensed by the certificate "db2ese_c.lic" was
not found in the DB2 copy.'

Kindly help us.


Problem 4
=========
Question :

I am trying to remove the table VARI from the automatic reorg in the dbacockpit.

Steps followed :
-> Configuration
-> Automatic Maintenance
-> Automatic REORG
-> Tables Excluded from REORG

Issue : Unable to include VARI table in "Tables Excluded from REORG" No Edit options .


Problem 5
===========
Question :

I have using the dba cockpit to enable the compression of the "Biggest table" of the SAP Bank Analyzer ( reducing the table from 360GB to 100GB ). This OFFLINE process took 23 hours.

Please , advise us how to the compress also the INDEXES of the tables.


Problem 6
===========
Question :

While doing the "Configure Automatically" step in "Managed system configuration" in Solution Manager I am getting the following error.##Unable to migrate unique rule column of collector

'SAPTOOLS.DBH_INDEX_COLLECT'!####SQL0150N The target fullselect, view, typed table, materialized query table, range-clustered table, or staging table in the INSERT, DELETE,
UPDATE, MERGE, or TRUNCATE statement is a target for which the requested operation is not permitted. SQLSTATE=428

Work Manager 6.1 not rendering on ATE iPad

$
0
0

Hi,

 

Working with Work Manager 6.1 I find the screens aren't rendering for a number of platforms in the ATE. For our current project we are using the iPad screenset but when testing via ATE the screens don't display the data (All the objects are downloaded correctly).

 

I couldn't find any SAP notes covering the problem.

ATE_iPad.png

 

This makes it difficult to test rules and actions because many are in screens the need to be accessed by drilling into objects. Since the data isn't visible you can't drill into the required screens.

 

1. Is this a known issue? If so are there plans to fix this?

 

2. Are there suggested workarounds?

 

Currently we're using 2 approaches -

     a. Temporarily make the rule/action available on the main screens so they can be triggered and debugged.

 

     b. Make the rules/actions available in the Pocket screensets and trigger them from there (Currently only the Windows CE Pocket PC Portrait      platform seems to render correctly)

 

After successfully testing the rule/action, then remove the temp change. Both approaches can be time consuming and fiddly to implement so it would be much better if ATE just rendered the screens properly.

 

3. Is it possible to increase the tracing for the other Agentry Clients e.g. WPF or Agentry SMP logging so it can output trace information about rules/actions?

 

Development Environment -

  • ATE Version - 7.0.3.605
  • SMP Platform - 3.0.3.2

 

Cheers,

Stephen

Viewing all 8545 articles
Browse latest View live