Quantcast
Channel: SCN: Message List
Viewing all 8902 articles
Browse latest View live

Subreport Chart is taking too long to view - Crystal Reports XI

$
0
0

Good midday,  

   

I am having an issue in regards to a subreport that is actually a chart. This chart breaks down the Total Amount of Work Cards decreasing each day.   

   

These are work cards that are updated every minute of the day, 24 hours daily because employees update to show work cards have been completed.  

   

Now this report contains the main report and four more subreports. Now once I start running the report it will take more than eight to 15 minutes when more than 3 to 7 people are requesting the report.   

   

Now if I take the chart off, the report runs less than 40 seconds. I have checked my query and everything seems in order.  

   

Could someone write me back!  

   

Thank you!  


Re: Load Report Failure

$
0
0

Hi Paul,

 

Thanks for replying.

We are not sure if recycling is causing the problem, instead we recycle the app pool to fix the issue.

Re: ORA-01078/LRM-00109 error after restore

$
0
0

Hi,

initsid.ora file not found. I can found PRD system file n sapdata1\database folder

can we create new

initsid.ora ,initsid_OFS.ora?

 

 

Thanx a lot ur reply

Re: how to fill appraisal form

$
0
0

Hi,

 

If your question has been answered or the problem was solved, please mark the thread as answered.

 

Thank you, kind regards,

Liran

Re: How to call a RFC with subroutine in dynamic action.

$
0
0

Hi,

 

 

If your question has been answered or the problem was solved, please mark the thread as answered.

 

 

Thank you, kind regards,

Liran

Re: SAP PMS:Template Release

$
0
0

Hi,

 

 

If your question has been answered or the problem was solved, please mark the thread as answered.

 

 

Thank you, kind regards,

Liran

Re: BOM Report

$
0
0

Hi all ;

 

I developed a abap report with MAST - MARA - MATKL - STKO - STAS - STPO tables. I did not understand relation of work center in BOM report. If you explain details for wc , someone give idea.

 

------------------------------------------------------------------------------------------------------------------------------------------------

 

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

*& Report  ZPP_BILL_OF_MATERIAL

*&

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

*& M.Ozgur Unal ------ 04.11.2014

*& Ürün ağaçları listeleme raporudur.

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

 

REPORT  zpp_bill_of_material.

 

TYPE-POOLS : slis.

CONSTANTS : c_tcode(4) TYPE c VALUE 'CS03'.

TABLES : mast , stko , stpo , stas , makt , mara .

 

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

* DATA TYPES DEFINITIONS*

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

 

TYPES : BEGIN OF ty_mast,

           matnr  TYPE mast-matnr,

           werks  TYPE mast-werks,

           stlan  TYPE mast-stlan,

           stlnr  TYPE mast-stlnr,

           stlal  TYPE mast-stlal,

           maktx  TYPE makt-maktx,

           matkl  TYPE mara-matkl,

        END OF ty_mast.

 

TYPES : BEGIN OF ty_stko,

           stlnr TYPE stko-stlnr,

           stlal TYPE stko-stlal,

           datuv TYPE stko-datuv,

           bmein TYPE stko-bmein,

           bmeng TYPE stko-bmeng,

           stlst TYPE stko-stlst,

         END OF ty_stko.

 

TYPES : BEGIN OF ty_stpo,

           stlnr TYPE stpo-stlnr,

           stlkn TYPE stpo-stlkn,

           datuv TYPE stpo-datuv,

           idnrk TYPE stpo-idnrk,

           meins TYPE stpo-meins,

           menge TYPE stpo-menge,

           aennr TYPE stpo-aennr,

           andat TYPE stpo-andat,

           annam TYPE stpo-annam,

           aenam TYPE stpo-aenam,

           posnr TYPE stpo-posnr,

           maktx TYPE makt-maktx,

         END OF ty_stpo.

 

TYPES : BEGIN OF ty_stas,

           stlnr TYPE stas-stlnr,

           stlal TYPE stas-stlal,

           stlkn TYPE stas-stlkn,

           lkenz TYPE stas-lkenz,

         END OF ty_stas.

 

 

 

TYPES : BEGIN OF ty_final,

           matnr TYPE mast-matnr,

           werks TYPE mast-werks,

           stlan TYPE mast-stlan,

           stlnr TYPE mast-stlnr,

           stlal TYPE mast-stlal,

           datuv TYPE stko-datuv,

           bmein TYPE stko-bmein,

           bmeng TYPE stko-bmeng,

           idnrk TYPE stpo-idnrk,

           posnr TYPE stpo-posnr,

           meins TYPE stpo-meins,

           menge TYPE stpo-menge,

           maktx TYPE makt-maktx,

           aennr TYPE stpo-aennr,

           andat TYPE stpo-andat,

           annam TYPE stpo-annam,

           aenam TYPE stpo-aenam,

           matkl TYPE mara-matkl,

           stlst TYPE stko-stlst,

           lkenz TYPE stas-lkenz,

           maktx2 TYPE makt-maktx,

   END OF ty_final.

 

 

DATA : it_mast TYPE TABLE OF ty_mast, wa_mast LIKE LINE OF it_mast.

DATA : it_stko TYPE TABLE OF ty_stko, wa_stko LIKE LINE OF it_stko.

DATA : it_stko2 TYPE ty_stko.

DATA : it_stpo TYPE TABLE OF ty_stpo, wa_stpo LIKE LINE OF it_stpo,

        it_stas TYPE TABLE OF ty_stas, wa_stas LIKE LINE OF it_stas,

        gt_final TYPE TABLE OF ty_final,

        gw_final TYPE  ty_final,

        gt_fcat  TYPE slis_t_fieldcat_alv,

        gw_fcat  TYPE slis_fieldcat_alv.

 

 

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

*SELECTION SCREEN*

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

 

SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME TITLE text-001.

 

SELECT-OPTIONS: s_matnr FOR  mast-matnr OBLIGATORY,

                 s_matkl FOR  mara-matkl.

PARAMETERS p_werks TYPE mast-werks OBLIGATORY.

 

SELECTION-SCREEN END OF BLOCK blk.

 

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

*GET DATA & INSERT TO GT_FINAL*

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

 

PERFORM get_data.

 

PERFORM loop_data.

 

 

IF gt_final[] IS NOT INITIAL.

 

   PERFORM f_fill_fcat .

   PERFORM f_display_alv .

 

ELSE .

   MESSAGE 'Veri bulunamadı' TYPE 'I'.

ENDIF.

 

PERFORM plant_validation.

 

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

*&      Form  FETCH_DATA_RETREIVE

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

*       text

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

*  -->  p1        text

*  <--  p2        text

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

FORM get_data .

 

   break ounal.

 

   SELECT mast~matnr mast~werks mast~stlan mast~stlnr mast~stlal

          makt~maktx mara~matkl

 

            INTO CORRESPONDING FIELDS OF TABLE it_mast

            FROM mast

            INNER JOIN makt

            ON mast~matnr = makt~matnr

            INNER JOIN mara

            ON makt~matnr = mara~matnr

            WHERE  mast~matnr IN s_matnr

                 AND mast~werks = p_werks

                 AND mast~stlan = '1'

                 AND mara~matkl IN s_matkl.

 

   IF NOT it_mast IS INITIAL.

     SELECT stlnr stlal datuv bmein bmeng

            aennr andat annam  aenam stlst

            FROM stko

            INTO CORRESPONDING FIELDS OF TABLE it_stko

            FOR ALL ENTRIES IN it_mast

            WHERE stlnr = it_mast-stlnr AND

                  stlal = it_mast-stlal.

 

     SORT it_stko BY datuv descending.

 

     SELECT stlnr stlal stlkn lkenz

            FROM stas INTO CORRESPONDING FIELDS OF TABLE it_stas

            FOR ALL ENTRIES IN it_mast

            WHERE stlnr = it_mast-stlnr AND

                  stlal = it_mast-stlal.

 

   ENDIF.

 

 

   IF NOT it_stko IS INITIAL.

     SELECT stlnr stlkn datuv idnrk posnr meins menge

            aennr andat annam aenam posnr

            maktx

            FROM stpo

            INNER JOIN makt

            ON stpo~idnrk = makt~matnr

            INTO CORRESPONDING FIELDS OF TABLE it_stpo

            FOR ALL ENTRIES IN it_mast

            WHERE stlnr = it_mast-stlnr.

 

   ENDIF.

 

 

ENDFORM.                    " FETCH_DATA_RETREIVE

 

 

 

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

*&      Form  LOOP_DATA

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

*       text

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

*  -->  p1        text

*  <--  p2        text

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

FORM loop_data .

 

   REFRESH gt_final.

 

   LOOP AT it_mast INTO wa_mast.

 

     SORT it_stpo BY idnrk.

     LOOP AT it_stas INTO wa_stas WHERE stlnr = wa_mast-stlnr AND

                                        stlal = wa_mast-stlal.

 

 

       MOVE: wa_mast-matnr  TO gw_final-matnr,

             wa_mast-werks  TO gw_final-werks,

             wa_mast-stlal  TO gw_final-stlal,

             wa_mast-stlan  TO gw_final-stlan,

             wa_mast-matkl  TO gw_final-matkl,

             wa_stas-lkenz  TO gw_final-lkenz,

             wa_mast-maktx TO gw_final-maktx2.

 

       READ TABLE it_stko INTO wa_stko WITH KEY stlnr = wa_mast-stlnr

                                                stlal = wa_mast-stlal.

 

       IF sy-subrc = 0.

         MOVE: wa_stko-stlnr TO gw_final-stlnr,

               wa_stko-stlal TO gw_final-stlal,

               wa_stko-stlst TO gw_final-stlst,

               wa_stko-bmein TO gw_final-bmein,

               wa_stko-bmeng TO gw_final-bmeng.

 

       ENDIF.

 

       READ TABLE it_stpo INTO wa_stpo WITH KEY stlkn = wa_stas-stlkn.

 

 

       IF sy-subrc = 0.

         MOVE: wa_stpo-idnrk TO gw_final-idnrk,

               wa_stpo-menge TO gw_final-menge,

               wa_stpo-aennr TO gw_final-aennr,

               wa_stpo-andat TO gw_final-andat,

               wa_stpo-annam TO gw_final-annam,

               wa_stpo-aenam TO gw_final-aenam,

               wa_stpo-posnr TO gw_final-posnr,

               wa_stpo-meins TO gw_final-meins,

               wa_stpo-maktx TO gw_final-maktx,

               wa_stpo-datuv TO gw_final-datuv.

 

 

         APPEND gw_final TO gt_final.

         CLEAR gw_final.

       ENDIF.

     ENDLOOP.

   ENDLOOP.

 

* added by ounal - 06.11.2014

* eğer silme işareti var ise ilgili tüm kodlarda update ettik

* çünkü stas tanlosunda aynı kodun hem silinmişini hem eski kaydını

* değişiklik no ile tutuyor.

 

  SORT gt_final BY posnr lkenz DESCENDING.

 

  FIELD-SYMBOLS: <fs_gt_final> LIKE LINE OF gt_final.

 

  IF LINES( gt_final ) NE 0.

    LOOP AT gt_final ASSIGNING <fs_gt_final>.

      IF <fs_gt_final> IS ASSIGNED.

       READ TABLE gt_final INTO gw_final

       WITH KEY stlnr = <fs_gt_final>-stlnr

                idnrk = <fs_gt_final>-idnrk

               " stlkn = <fs_gt_final>-stlkn

                menge = <fs_gt_final>-menge

                posnr = <fs_gt_final>-posnr.

        IF <fs_gt_final> IS ASSIGNED AND sy-subrc = 0.

        <fs_gt_final>-lkenz = gw_final-lkenz .

        ENDIF.

      ENDIF.

    ENDLOOP.

  ENDIF.

 

ENDFORM.                    " LOOP_DATA

 

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

*&      Form  f_fill_fcat

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

*       text

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

FORM f_fill_fcat .

 

   gw_fcat-col_pos = 1.

   gw_fcat-fieldname = 'WERKS'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Üretim yeri'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

 

   gw_fcat-col_pos = 2.

   gw_fcat-fieldname = 'STLNR'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Ürün ağacı no.'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 3.

   gw_fcat-fieldname = 'STLAL'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Alternatif bom'.

*   gw_fcat-do_sum = 'X'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 4.

   gw_fcat-fieldname = 'MATNR'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Malzeme No.'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

 

   gw_fcat-col_pos = 5.

   gw_fcat-fieldname = 'MAKTX2'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Kısa metin'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 6.

   gw_fcat-fieldname = 'IDNRK'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Bileşen'.

   gw_fcat-outputlen   = 10.

*  gw_fcat-emphasize   = 'X'.

*  gw_fcat-key         = 'X'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 7.

   gw_fcat-fieldname = 'POSNR'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Kalem no'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 8.

   gw_fcat-fieldname = 'BMENG'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Temel miktar'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 9.

   gw_fcat-fieldname = 'MENGE'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Bileşen miktarı'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 10.

   gw_fcat-fieldname = 'AENAM'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Değiştiren'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 11.

   gw_fcat-fieldname = 'MATKL'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Mal grubu'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 12.

   gw_fcat-fieldname = 'AENNR'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Değişiklik no'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 13.

   gw_fcat-fieldname = 'ANDAT'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Kayıt tarihi'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 14.

   gw_fcat-fieldname = 'ANNAM'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Kaydeden'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 15.

   gw_fcat-fieldname = 'DATUV'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Geçerlilik başı'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 16.

   gw_fcat-fieldname = 'STLST'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Statü'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 17.

   gw_fcat-fieldname = 'BMEIN'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Temel ölçü'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 18.

   gw_fcat-fieldname = 'MEINS'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Bileşen ölçü'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 19.

   gw_fcat-fieldname = 'MAKTX'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Bileşen metni'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

   gw_fcat-col_pos = 20.

   gw_fcat-fieldname = 'LKENZ'.

   gw_fcat-tabname = 'GT_FINAL'.

   gw_fcat-seltext_m = 'Silme'.

   APPEND gw_fcat TO gt_fcat.

   CLEAR gw_fcat.

 

ENDFORM.                    "f_fill_fcat

 

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

*&      Form  f_display_alv

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

*       text

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

FORM f_display_alv .

   DATA:lv_repid TYPE sy-repid.

   lv_repid = sy-cprog.

 

   DATA: w_layout TYPE slis_layout_alv.

   w_layout-colwidth_optimize = 'X'.

   w_layout-zebra = 'X'.

 

 

   CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

      EXPORTING

 

        i_callback_program      = sy-cprog

        is_layout               = w_layout

        i_callback_user_command = 'USER_COMMAND'

        it_fieldcat             = gt_fcat[]

        i_default               = 'X'

        i_save                  = 'A'

      TABLES

        t_outtab                = gt_final

      EXCEPTIONS

        program_error           = 1

        OTHERS                  = 2.

   IF sy-subrc <> 0.

* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

   ENDIF.

 

ENDFORM.                    "f_display_alv

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

*&      Form  PLANT_VALIDATION

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

*       text

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

*  -->  p1        text

*  <--  p2        text

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

FORM plant_validation .

   DATA : lv_plant TYPE mast-werks.

   SELECT SINGLE werks

          FROM mast

         INTO  lv_plant

     WHERE werks  = p_werks.

 

   IF sy-subrc NE 0.

     MESSAGE 'Üretim yerini kontrol ediniz' TYPE 'I'.

     RETURN.

   ENDIF.

ENDFORM.                    "PLANT_VALIDATION

 

 

 

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

*&      Form  user_command

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

*       text

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

*      -->R_UCOMM      text

*      -->RS_SELFIELD  text

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

FORM user_command USING r_ucomm LIKE sy-ucomm rs_selfield TYPE

slis_selfield.

 

   IF r_ucomm = '&IC1'.

 

     READ TABLE gt_final INTO gw_final INDEX rs_selfield-tabindex.

 

     rs_selfield-value = gw_final-matnr.

 

     SET PARAMETER ID 'MAT' FIELD rs_selfield-value.

     CALL TRANSACTION 'CS03' AND SKIP FIRST SCREEN.

 

   ENDIF.

 

ENDFORM.                    "user_command



Re: Profile matchup vs Competency matchup

$
0
0

Hi,

 

 

If your question has been answered or the problem was solved, please mark the thread as answered.

 

 

Thank you, kind regards,

Liran


Service entry sheet not validating the value against the Service order

$
0
0

Hello SDN ,

 

I am trying to create a Service entry sheet against the Call-off Service (PO). My client requirement is to allow to set price change indicator in the call-off order, so that they would be able to milestone billing based on certain service performed against the call-off order. I am allowing quantity changes (just warning message). For ex, each service line will be set with quantity equal to 1 in the call-off order. This will allow users to create any number of service entry with quantity equal to 1. At the same time it will also changing the price for each milestone service completed.

 

Now the issue is the service entry sheet is not validating (giving error message) for value greater the call-off order total value or individual service item line specification value in the PO or against the  overall or expected limit set in the Limits tab of the PO.

 

I have un-checked "No limit" indicator against the overall limit as well as Other limit sub-tab in Limits tab.

 

I activated all possible error messages in SE area like - 370,233,347,885.

 

Please  help me. It is very urgent.

 

Thanks  a lot in advance.

 

Regards,

Baskaran G

PBTools For PowerBuilder 5 to 12.6 (Build 116)

$
0
0

Hi Everyone

 

PBTools for PowerBuilder (Build 116) is ready to download. https://myelkovan.codeplex.com/

Now it can read PB9 and earlier libraries thanks to Arnd Schmidt's pblraw object. (Verzeihen Sie Bitte Herr Schmidt I konnte nicht Ihre Email Adresse gefunden)

 

 

PBTools is a free PowerBuilder Application that provides some useful tools for PowerBuilder from version 5 to 12.6.  After installing PBTools from pbtools_setup.exe, you will see new icons on the PowerBuilder toolbar. Toolbar icons had to be selected from PowerBuilder collection, so I cannot use my own icons.

1.png

 

Grid Datawindow : You can change the color and shape of grid datawindows in your project with single click. I provide 34 different colors. You can add more colors by adding new datawindows into the library gridcolors.pbl.

2.png

 

Compare Object : You can compare two libraries or project to see if they have the same object or not. If two libraries have the same object, source code will be compared.  

 

Find Double Object: You can find double objects in your project.  

 

Dynamic Script: You can run PowerBuilder scripts for all datawindows. For example you can change the edit style of all columns at the same time.

 

Global Replace: You can replace any word in your project. PBTools can export the modified object or alter the library. 

 

Object Find: You can find any object in your project without writing the whole object name.  

 

Unused Object Find : You can find unused objects in your project.

 

Unused Variable Find: You can find how many variables you declared but not used. 

 

Api Help : A useful help for windows api.

 

PBComment : It is originally developed by RC SIZER and I implemented it to the PBTools. You can past following text to the events or functions   

3.png

LibraryAnalyze: PBTools can analyze a libraries or projects, extract all SQL sentences and calculate what permissions are needed to run your application.  

 

Synchronizer: You can copy files to another location by one click and then run an executable file. This application can copy, delete, backup with date and time, compress and decompress zip files. Zip capability was written by RSmith

Once you run an application, Synchronizer can copy first new versions of pbd or exe files and then run your application.

 

muratyelkovan@yahoo.com

Murat Yelkovan

Re: ABAP communication layer is not configured properly.

$
0
0

Hello Kamil,

 

I have downgraded JDK to 7 and still the same issue. I was using SAPGUI 7.40 and uninstalled and it did not work.

 

which eclipse are you using Kepler or Luna?

 

Kegards

Re: Error at back ground step "workitem is locked by user xxxxx"

$
0
0

The message says workitem is locked but does it say which workitem? Is it the approval step or the background step.

Re: Changing the value/property of a UI control placed in view through controller

$
0
0

Hi Preetam,

 

replace

 

sap.ui.getCore().byId('inputFieldId');

 

 

with

 

this.byId('inputFieldId');

 

 

Example

Plunker

 

Thanks and Regards, Venkatesh

Re: RABAX_STATE RENDER_DELTA_MATRIX

$
0
0

Hi Alex:

 

I have same error.

 

Can you tell me how do you solved it?

 

Thanks in advance.

Alonso Valenzuela

Re: R Block not getting set

$
0
0

Hello Gaurav,


PP tolerance key takes into consideration the quantity invoiced.
However, if in the purchase order the flag "S.-Based IV" is not set, system is not able to read any quantity and understands there is no quantity available for the calculation.


For a service PO, quantity check only happens when 'S.-Based IV' flag is set.


Set flag "S.-Based IV" and then perform a new test.


Regards,
Carla


Re: Query on adding steps in transactions

$
0
0

Can you look in the Agentry Events.log file and post the error from there.

SAP HANA With Microsoft Powerview

$
0
0

Hi All,

 

Have anyone tried connecting Microsoft Powerview with SAP HANA?

 

Please share any steps, links or documentation related that.

 

Thank you

 

-Gayathri

Re: ISQL login error SYBASE

$
0
0

Hi Arne

 

What are the passwords for the users sapss and sapsso please? Getting that same problem of a new installation and cannot connect to the adaptive server. Please assist.

 

Regards

Rob

Re: PB .Net assembly not working on PB Classic (12.5.2 version both)

$
0
0

Ok I'll do that, because I ran the gacutil again with success and the error continues.

 

I'll let you know

Re: How to update FAGL_SPLINFO table after FM activation

$
0
0

Hi Eugenia,

 

Check the notes below.

 

1501140 - Automatic activation of split criteria

1234391 - Incorrect payment update in FM or in NewGL split information

 

JPA

Viewing all 8902 articles
Browse latest View live




Latest Images