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

Hi all any idea about this scenario

$
0
0

Hi all,

 

i need to create variables for below 3 conditions.

can any one help in this.

 

1. 

 

The count of days between Schedule date of task and Completion date of task.

If completion date is blank, then use current day

‘0’ should represent any negative values.

 

2

 

The count of days between Schedule date of task and Completion date of task.

If completion date is blank, then a Null value is displayed.

 

3

 

If Completion date Day is greater than Schedule Date Day then = Yes.

If Completion date Day is less than or equal to Schedule Date Day then = No.

If Completion date blank and Todays dates day is greater than Schedule date then = Yes.

 

thanks in advance.


Adaptive WS Model - DDCheckException

$
0
0

Dear Experts,

 

We have a WD application which reads data using a PI interface. We had some changes on the webservice. We had a restriction on the field UID for 9 characters. Now it is unlimited.

 

We changed our PI and Backend-System according to this. The services are working fine now.


But if we reimport the WSDL in WebDynpro Application the wsdl changes doesnt effect the generated proxy. I read in SAP Note 1310216 that we have change designtimeWsdlUrl and defaultMetadataDestination in order to clear this cache. It also speaks of Destination Templates. I guess the note doesn't apply to our situation %100. We don't have a destination template for every webservice. We have three Destinations "CLASSIFICATION_DESTINATION", "ConfigPort_Document" and "UDDI_DESTINATION". We are using Service References/Application Communication. And defaultMetadataDestination, defaultExecutionDestination are empty in our model objects. I tried to change them and create a new Destinations accordingly. Also changed designtimeWsdlUrl to ~/Components/eAgeCRM.wsdl after placing the new wsdl unter Components folder as described. I am still getting the same error after the server reboot. Anyone have dealt with this issue?


Thanks and Regards,

Koray

How to find the info structure used for a material

$
0
0

Hi experts,

My previous project created a planning hierarchy for a material. Now I know the material code, but when I want to find the planning hierarchy in MC63, system asks to enter the Info structure. Is there any way/tables to find out the info structure used to create planning hierarchy for a material?

 

Thanks, Sakthi

Coding block appear in bdc

$
0
0

Hi experts,I have develop a BDC using call transaction for tcode f-02.While uploading data additional screen appear as coding block .I have made recording using no batch input.

 

report ZFI_BDC_F02
        no standard page heading line-size 255.

*
*start-of-selection.
*include bdcrecx1.
*
*perform open_group.

TYPES : BEGIN OF TY_FINAL,
         BLDAT(10) TYPE C,
         BLART(2) TYPE C,
         BUKRS(4) TYPE C,
         BUDAT(10) TYPE C,
         WAERS(3) TYPE C,
         NEWBS(2) TYPE C,
         NEWKO(17) TYPE C,
         NEWUM(1) TYPE C,
         WRBTR(16) TYPE C,
         DMBTR(16) TYPE C,
         BUPLA(4TYPE C,
         SECCO(4) TYPE C,
         GSBER(4) TYPE C,
         ZFBDT(10) TYPE C,
*        FIPOS(20) TYPE C,
         ZUONR(10) TYPE C,
         SGTXT(35) TYPE C,
         NEWBS1(3) TYPE C,
         NEWKO1(17) TYPE C,
         WRBTR1(16) TYPE C,
         DMBTR1(16) TYPE C,
         BUPLA1(4TYPE C,
         ZUONR1(10) TYPE C,
         SGTXT1(35) TYPE C,
         NEWBS2(3) TYPE C,
         NEWKO2(17) TYPE C,
         GSBER1(4) TYPE C,
         KOSTL(10) TYPE C,
         BUPLA2(4TYPE C,
         VALUT(10) TYPE C,
         ZUONR2(10) TYPE C,
         SGTXT2(35) TYPE C,
         GSBER2(4) TYPE C,
         BUPLA3(4TYPE C,
         VALUT1(10) TYPE C,
         ZUONR3(10) TYPE C,
         SGTXT3(35) TYPE C,
         GSBER3(4) TYPE C,
         WRBTR_S(16) TYPE C,
         DMBTR_S(16TYPE C,

        END OF TY_FINAL.

DATA : WA_FINAL TYPE TY_FINAL,
        IT_FINAL TYPE TABLE OF TY_FINAL.

DATA: IT_EXCEL TYPE STANDARD TABLE OF ALSMEX_TABLINE,
       W_EXCEL TYPE ALSMEX_TABLINE.
DATA : INDEX TYPE I,
        MSG TYPE STRING,
        TEMP TYPE STRING,
        CNT(2) TYPE N.
FIELD-SYMBOLS: <FS>.

*----------------------------------------------------------------------*
*   data definition FOR BDC DATA
*----------------------------------------------------------------------*
*       Batchinputdata of single transaction
DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.
*       messages of call transaction
DATA:   MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME TITLE TEXT-001.
PARAMETERS:P_PATH LIKE RLGRAP-FILENAME OBLIGATORY,
            P_SROW TYPE I OBLIGATORY,
            P_EROW TYPE I OBLIGATORY.
SELECTION-SCREEN SKIP 1.
PARAMETERS P_MODE LIKE CTU_PARAMS-DISMODE OBLIGATORY.
SELECTION-SCREEN END OF BLOCK BLK.

INITIALIZATION.
   P_SROW = 1.
   P_EROW = 1.
   P_MODE = 'A'.
* At Selection-Screen event
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_PATH.
   CALL FUNCTION 'F4_FILENAME'
     IMPORTING
       FILE_NAME = P_PATH.

START-OF-SELECTION.

   PERFORM GET_EXCEL_DATA.
   PERFORM CALL_BAPI.


*&---------------------------------------------------------------------*
*&      Form  GET_EXCEL_DATA
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  -->  p1        text
*  <--  p2        text
*----------------------------------------------------------------------*
FORM GET_EXCEL_DATA .

   CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
     EXPORTING
       FILENAME    = P_PATH
       I_BEGIN_COL = 1
       I_BEGIN_ROW = P_SROW
       I_END_COL   = 33
       I_END_ROW   = P_EROW
     TABLES
       INTERN      = IT_EXCEL.
   IF SY-SUBRC NE 0.
     MESSAGE 'Error occur in reading the Excel file' TYPE 'I'.
     STOP.
   ENDIF.

   LOOP AT IT_EXCEL INTO W_EXCEL.
     INDEX = W_EXCEL-COL.
     ASSIGN COMPONENT INDEX  OF STRUCTURE  WA_FINAL TO <FS>.
     <FS> = W_EXCEL-VALUE.
     AT END OF ROW.
       APPEND WA_FINAL TO IT_FINAL.
       CLEAR WA_FINAL.
     ENDAT.
   ENDLOOP.

*  it_item[] = it_final[].
ENDFORM.                    " GET_EXCEL_DATA
*start-of-selection.


*&---------------------------------------------------------------------*
*&      Form  CALL_BAPI
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  -->  p1        text
*  <--  p2        text
*----------------------------------------------------------------------*
FORM CALL_BAPI .

   INDEX = 0.
   LOOP AT IT_FINAL INTO WA_FINAL.
     INDEX = INDEX + 1.
     REFRESH :BDCDATA,MESSTAB.

*include bdcrecx1.
*
*start-of-selection.
*
*perform open_group.
IF WA_FINAL-NEWBS EQ '29' OR  WA_FINAL-NEWBS EQ '29I' OR  WA_FINAL-NEWBS EQ '29B'.

perform bdc_dynpro      using 'SAPMF05A' '0100'.
perform bdc_field       using 'BDC_CURSOR'
                               'RF05A-NEWUM'.
perform bdc_field       using 'BDC_OKCODE'
                               '/00'.
perform bdc_field       using 'BKPF-BLDAT'
                               '11.02.2016'.
perform bdc_field       using 'BKPF-BLART'
                               'KZ'.
perform bdc_field       using 'BKPF-BUKRS'
                               'EIL'.
perform bdc_field       using 'BKPF-BUDAT'
                               '11.02.2016'.
perform bdc_field       using 'BKPF-MONAT'
                               '11'.
perform bdc_field       using 'BKPF-WAERS'
                               'USD'.
perform bdc_field       using 'RF05A-NEWBS'
                               '29'.
perform bdc_field       using 'RF05A-NEWKO'
                               '20696'.
perform bdc_field       using 'RF05A-NEWUM'
                               'A'.
perform bdc_dynpro      using 'SAPMF05A' '0304'.
perform bdc_field       using 'BDC_CURSOR'
                               'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                               '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                               '5000'.
perform bdc_field       using 'BSEG-DMBTR'
                               '305000'.
perform bdc_field       using 'BSEG-BUPLA'
                               'EIL'.
perform bdc_field       using 'BSEG-SECCO'
                               'EIL'.
perform bdc_field       using 'BSEG-GSBER'
                               'enpl'.
perform bdc_field       using 'BSEG-ZFBDT'
                               '11.02.2016'.
perform bdc_field       using 'BSEG-FIPOS'
                               'ESTER-COMMITMENT'.
perform bdc_field       using 'BSEG-ZUONR'
                               '6059'.
perform bdc_field       using 'BSEG-SGTXT'
                               'Testing'.
perform bdc_field       using 'RF05A-NEWBS'
                               '40'.
perform bdc_field       using 'RF05A-NEWKO'
                               '404012'.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                               'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                               '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                               '10'.
perform bdc_field       using 'BSEG-DMBTR'
                               '506'.
perform bdc_field       using 'BSEG-BUPLA'
                               'EIL'.
perform bdc_field       using 'BSEG-ZUONR'
                               '6059'.
perform bdc_field       using 'BSEG-SGTXT'
                               'Testing'.
perform bdc_field       using 'RF05A-NEWBS'
                               '50'.
perform bdc_field       using 'RF05A-NEWKO'
                               '103601'.
perform bdc_field       using 'COBL-GSBER'
                               'enpl'.
perform bdc_field       using 'COBL-KOSTL'
                               'DE0909'.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                               'BSEG-SGTXT'.
perform bdc_field       using 'BDC_OKCODE'
                               'AB'.
perform bdc_field       using 'BSEG-WRBTR'
                               '5,010.00'.
perform bdc_field       using 'BSEG-DMBTR'
                               '305,506.00'.
perform bdc_field       using 'BSEG-VALUT'
                               '11.02.2016'.
perform bdc_field       using 'BSEG-ZUONR'
                               '6059'.
perform bdc_field       using 'BSEG-SGTXT'
                               'Testing'.
perform bdc_field       using 'COBL-GSBER'
                               'corp'.
perform bdc_dynpro      using 'SAPMF05A' '0700'.
perform bdc_field       using 'BDC_CURSOR'
                               'RF05A-AZEI1(06)'.
perform bdc_field       using 'BDC_OKCODE'
                               '=BU'.
*perform bdc_transaction using 'F-02'.
*
*perform close_group.
ELSE.
    PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0100'.
       PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                     'RF05A-NEWUM'.
       PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                     '/00'.
       PERFORM BDC_FIELD       USING 'BKPF-BLDAT'
                                     WA_FINAL-BLDAT.
       PERFORM BDC_FIELD       USING 'BKPF-BLART'
                                     WA_FINAL-BLART.
       PERFORM BDC_FIELD       USING 'BKPF-BUKRS'
                                     WA_FINAL-BUKRS.
       PERFORM BDC_FIELD       USING 'BKPF-BUDAT'
                                     WA_FINAL-BUDAT.
       PERFORM BDC_FIELD       USING 'BKPF-MONAT'
                                     ''.
       PERFORM BDC_FIELD       USING 'BKPF-WAERS'
                                     WA_FINAL-WAERS.
       PERFORM BDC_FIELD       USING 'FS006-DOCID'
                                     '*'.
       PERFORM BDC_FIELD       USING 'RF05A-NEWBS'
                                     WA_FINAL-NEWBS.
       PERFORM BDC_FIELD       USING 'RF05A-NEWKO'
                                     WA_FINAL-NEWKO.
       PERFORM BDC_FIELD       USING 'RF05A-NEWUM'
                                     WA_FINAL-NEWUM.
       PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0304'.
       PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                     'RF05A-NEWKO'.
       PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                     '/00'.
       PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
                                     WA_FINAL-WRBTR.
       PERFORM BDC_FIELD       USING 'BSEG-DMBTR'
                                     WA_FINAL-DMBTR.
       PERFORM BDC_FIELD       USING 'BSEG-BUPLA'
                                     WA_FINAL-BUPLA.
       PERFORM BDC_FIELD       USING 'BSEG-SECCO'
                                     WA_FINAL-SECCO.
       PERFORM BDC_FIELD       USING 'BSEG-GSBER'
                                     WA_FINAL-GSBER.
       PERFORM BDC_FIELD       USING 'BSEG-ZFBDT'
                                     WA_FINAL-ZFBDT.
       PERFORM BDC_FIELD       USING 'BSEG-FIPOS'
                                     'ESTER-COMMITMENT'.
       PERFORM BDC_FIELD       USING 'BSEG-ZUONR'
                                     WA_FINAL-ZUONR.
       PERFORM BDC_FIELD       USING 'BSEG-SGTXT'
                                     WA_FINAL-SGTXT.
       PERFORM BDC_FIELD       USING 'RF05A-NEWBS'
                                     WA_FINAL-NEWBS1.
       PERFORM BDC_FIELD       USING 'RF05A-NEWKO'
                                     WA_FINAL-NEWKO1.
       PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0300'.
       PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                     'BSEG-SGTXT'.
       PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                     '=BS'.
       PERFORM BDC_FIELD       USING 'BSEG-WRBTR'
                                     WA_FINAL-WRBTR1.
       PERFORM BDC_FIELD       USING 'BSEG-DMBTR'
                                     WA_FINAL-DMBTR1.
       PERFORM BDC_FIELD       USING 'BSEG-BUPLA'
                                     ''.
       PERFORM BDC_FIELD       USING 'BSEG-ZUONR'
                                     WA_FINAL-ZUONR1.
       PERFORM BDC_FIELD       USING 'BSEG-SGTXT'
                                     WA_FINAL-SGTXT1.
       PERFORM BDC_FIELD       USING 'DKACB-FMORE'
                                     'X'.
       PERFORM BDC_DYNPRO      USING 'SAPLKACB' '0002'.
       PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                     'COBL-GSBER'.
       PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                     '=ENTE'.
       PERFORM BDC_FIELD       USING 'COBL-GSBER'
                                     WA_FINAL-GSBER.
       PERFORM BDC_FIELD       USING 'COBL-FIPEX'
                                     'ESTER-COMMITMENT'.
       PERFORM BDC_FIELD       USING 'COBL-FIPOS'
                                     'ESTER-COMMITMENT'.
       PERFORM BDC_DYNPRO      USING 'SAPMF05A' '0700'.
       PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                     'RF05A-NEWBS'.
       PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                     '=BU'.
ENDIF.
     CALL TRANSACTION 'F-02' USING BDCDATA
                                                        MODE P_MODE
                                                        UPDATE 'A'
                                                        MESSAGES INTO MESSTAB.

     LOOP AT MESSTAB.
       IF MESSTAB-MSGTYP = 'E' OR MESSTAB-MSGTYP = 'S'.
         CALL FUNCTION 'FORMAT_MESSAGE'
           EXPORTING
             ID        = MESSTAB-MSGID
             LANG      = '-D'
             NO        = MESSTAB-MSGNR
             V1        = MESSTAB-MSGV1
             V2        = MESSTAB-MSGV2
             V3        = MESSTAB-MSGV3
             V4        = MESSTAB-MSGV4
           IMPORTING
             MSG       = MSG
           EXCEPTIONS
             NOT_FOUND = 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.
         WRITE:/9  MSG.
       ENDIF.
     ENDLOOP.
   ENDLOOP.


ENDFORM.                    " CALL_BAPI


*----------------------------------------------------------------------*
*        Start new screen                                              *
*----------------------------------------------------------------------*
FORM BDC_DYNPRO USING PROGRAM DYNPRO.
   CLEAR BDCDATA.
   BDCDATA-PROGRAM  = PROGRAM.
   BDCDATA-DYNPRO   = DYNPRO.
   BDCDATA-DYNBEGIN = 'X'.
   APPEND BDCDATA.
ENDFORM.                    "BDC_DYNPRO

*----------------------------------------------------------------------*
*        Insert field                                                  *
*----------------------------------------------------------------------*
FORM BDC_FIELD USING FNAM FVAL.

   CLEAR BDCDATA.
   BDCDATA-FNAM = FNAM.
   BDCDATA-FVAL = FVAL.
   APPEND BDCDATA.

ENDFORM.                    "BDC_FIELD

Locking users and Early delta initialization - any experience ?

$
0
0

Hi,

I am under immense pressure from business to reload selected sales orders that have been deleted from Cube and DSO in BW via selective deletion. The business is 24X7 and they don't want to lock users out of the system.

 

I came across below blog which says that I don't have to lock users if I do early delta initialization and repair full load.

 

Does anyone have the experience of early delta initialization without locking users.

 

Explore to SAP Business Warehouse/Analytics: Setup Tables filling without Locking Users in SAP BI

 

Early Delta Initialization:

 

In this one we do the initialization before filling setup tables. So that users can post the records when we are performing setup tables filling. we will get the posted records in next delta run.

 

In this method we need to do the below steps.

 

i) Run the Info Package with option " early delta initialization". This will enable the delta queue and setup the timestamp for delta in system

ii) Delete the data in setup tables for specific application component

iii) Fill the setup tables.

iv) Load the setup tables data to BI using full repair IP.

 

How to check whether Data source supports for Early Delta Initialization?

 

We can check this in table ROOSOURCE.

i) Go to SE16 --> table name and enter

ii) In the next screen give the data source name and execute.

iii) If field ZDD_ABLE in the result has value X, then data supports for early delta initialization.

iv) If it has space, then it doesn't support.


My extractor supports early delta initialization

 

Early delta.png

Erro ICMI na fatura de devolução

$
0
0

Boa tarde,

 

Estamos tendo um problema no calculo da pricing ao faturar uma devolução que teve mudança de aliquota de imposto ICMS entre a data da saida e a data da devolução.

 

 

Exemplo:
Fatura saida em 25/12/2015

condição  ICM3 17%

 

Incluida alíquota de 18% em 01/01/2016 na tabela J_1BTXIC1

icms.jpg

 

Ordem de devolução criada com referencia a fatura de saída em 10/01/2016

condição ICM3 17%


Fatura de devolução

condição  ICM3 17%

condição ICMI está embutindo 18% no calculo apesar de estar 17% na ICM3.

 

A data de preço da condição está a data de preço da saída 25/12/2015 e no controle de cópia está D (copiar sem modificação)

 

Como forma paliativa, para toda devolução com saida de 17% estamos excluindo o registro de 18% da tabela para calcular corretamente.

 

 

Alguém ja teve esse mesmo erro?

 

 

Att,

Gizela

X-CSRF-Token

$
0
0

Hi folks,

 

could you please advise me how to generate X-CSRF-Token with GET method. Service call is executed successfully with return code 200, but it is not returning CSRF Token, which I need in my front end for CRUD Operations.

Data dump from C4C system

$
0
0

Hi Experts,

 

We would like to extract data from C4C system to a file in a XML format.  i.e. data dump of all customers, prospects, Leads , opportunities etc from C4C to a file in XML format.

We use PI as the middle ware and I know there are Standard C4C API available to fetch the records , I have the following questions:

 

1. We cannot use Odata Services from C4C system as we don't yet have an Odata Adapter in our PI system. Our PI system is on 7.4 SP0 and to my knowledgde Odata adapter is available when you install an add-on ? 

 

2.  Say, If I get the Odata Adapter running on PI and can consume Odata services from C4C. For the scenario of writing Odata to XML, how can I configure the trigger in PI. Since the target is a File system and C4C cannot push data, how could I trigger the interface in PI to consume Odata service and write it to file in XML ?

 

3. As other alternative, I could use SOAP Queries on C4C to fetch data. However, since I use a file system as target . How could I trigger the interface such that it calls SOAP query on C4C and fetch results in to file as XML ??

 

 

 

Appreciate any suggestions.

 

 

-Amber


billing status remains unchanged

$
0
0

Delivery number  is not fully billed; the lines with red status for billing belong to Sale order

One line from this sale order did not have price. Line was removed, but still the status remained unchanged.

Affordable Care Act (ACA)

$
0
0

Hello community,

 

If you have questions about ACA, you can post this on this thread. We will update this thread with tips and notes related to Affordable Care Act.

 

The main note has been released today:

 

2167502 - BEN: Main Note - Affordable Care Act (ACA)

 

Thank you,

 

Kind regards,

 

Graziela Dondoni

Linking with in the same report

$
0
0

Hi Experts,

 

My requirement is to show list of a column in the report header and clicking on a particular value should take me to that value which is in the same report.

For example

I have data grouped country, state and year wise

I have to show list of Years on the first page of the report and clicking on the a year should take the control to the page where the relevant data of that particular year exists.

 

Is it possible, in webi i know report component option is there as part of hyperlink but i am not sure about crystal.

We are using crystal 2008 SP2

Error to set up the Console Client

$
0
0

Hi,

 

When I try set up the console client I am facing following error :

 

"Multiple properties files found[uh, hana.trial.ondemand.com, ui, dev, ua, d0xxxxtrial, uu d0xxx].Provide only one properties file."  I have attached the screen shot Please help me with the solution. 

 

Thanks,

Vikram

Upload Order Operation's component long text

$
0
0

Hello experts,

 

I am using BAPI_ALM_ORDER_MAINTAIN to create PM order. In this BAPI i am able to upload long text at operation level but i am not able to upload long text at component level.

As long text IT_TEXT table contains only field 'Activity Number' that is operation.

 

In the table method i am using :

 

sdn.JPG

In the long text structure

sdn 2.jpg

I am very much confused how to upload component level long text.

I have searched a lot but could not find.

IF anyone has faced this issue kindly help me.

 

Thanks,

Ashish T.

1450 Errors in Sybase Errorlog--second opinion

$
0
0

01:00000:00000:2016/02/08 16:07:09.91 kernel  sddone: read error on virtual disk 52 block 13933312:

01:00000:00000:2016/02/08 16:07:09.91 kernel  sddone: Windows NT system error 1450: Unforseen error.

01:00000:01245:2016/02/08 16:07:09.96 server  Error: 823, Severity: 24, State: 1

01:00000:01245:2016/02/08 16:07:09.96 server  I/O error detected during read for BUF=0x7F2E7080, MASS=0x7F2E7080, Buf#=0

We have these errors in our ASE 12.5.4 ESD#7 Windows 2003 x86 environment running on VMWare ESX 5

This is a production environment and we are doing POC for upgrade to ASE 16, and from Windows 2003,

so let's leave the upgrade suggestions for this question.

 

The problem is, that it leads to zombie processes, meaning processes not running but still holding locks. That requires a reboot.

SAP says that 1450 are Windows NT error and wants to raises their hands, call it quits.

The windows eventlog does not have any event, so basically the Microsoft team raises their hands too.

 

is there any way we can try to pinpoint and fix with evidence?

estimate rogue queries going zombie?

like file descriptors?

paged pool errors? (although there are no events related to paged pool in the eventlog)

your replies would be greatly appreciated.

Problem in Dashboard Drill Down

$
0
0

Dear Experts,

 

Please consider the following snapshot and confirm why is it not showing drill down.

 

Drill Down Error.png

Regards,

 

WAQAS


Development in Credit Management Process

$
0
0

Hello

 

Standard Functionality Customer Credit Management: If any open items overdue for customer, system should not permit creation of delivery order for sales personnel.

 

Development Scenario 1 VKM3 Transaction code

 

  • Sales manager’s should be able to release the sales order from VKM3 transaction code if open items over due beyond credit term between 31 -60 DAYS Only. The sales managers should be restricted to release sales order on hold due to dynamic credit check.

 

Development Scenario 2 VKM3 Transaction code 

 

  • Finance manager’s should be able to release the sales order from VKM3 transaction code if open items overdue beyond credit term between 31 - 120 DAYS Only. The Finance manager should be permitted to release sales order on hold due to dynamic credit check.

 

Development Scenario 3 VKM3 Transaction code

 

  • CEO should be able to release the sales order from VKM3 transaction code if open items overdue beyond credit term between 31 - 180 DAYS Only. The CEO should be permitted to release sales order on hold due to dynamic credit check.

 

Can this be achieved from Status Profile ??? or development  or ????


Any suggestion on the same will be highly appreciated

How to download officially the PB12.6 version

$
0
0

How to download PB12.6 ?

 

Comment décharger la version Pb12.6 et générer la licence ?

 

Merci,

PANDRE

How to get horizontal scrolling for table in webdynpro abap??

$
0
0

How to get horizontal scrolling for table in webdynpro abap instead of getting scroll bar for page if we have many fields in table??? refer below screen shots

 

Actual out put which I am getting.

tab.JPG

 

I need scroll bar in highlighted area as shown in below screen shot.

tab1.JPG

Encryption in PI using java binary file(.jar) file

$
0
0

Hi Experts,

 

My scenario is file to file PI 7.31 SP11 and I am using only ID objects no ESR objects but the challenge is encryption using java binary file(.jar) file.

The file gets generated by sender SAP R3 system and places it in a shared folder and PI picks it and pushes to FTP after encrypting. But the client provides encryption utility in the form of java binary file(.jar) file and we need to call the jar file once the payment file is generated from their erp in order to encrypt the payment files. Please guide.


Thanks,

Nithin.

How to succeed Multiple SAP back end (SAP )access with single Gateway dynamically?

$
0
0

HI Gurus,

 

As of now we have single Gateway server where (we do GW config as well as coding to access back end ) connected with our back end SAP server development , Quality and production via RFC destination ..

 

How do I dynamically connect to different server ?

 

For example , if I make all three (dev, qs, prd ) as default in system alias, will I be able to connect to different back end dynamically ?

 

Appreciate your help..

 

Kind regards

Shiv..

Viewing all 3183 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>