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

Re: When will SAP Java AS for EE 6 see the light?

$
0
0

http://sapinsider.wispubs.com/Assets/Articles/2015/July/SPI-a-foundation-for-the-future

Hi Steffen,

scolling here is a pain

 

In the above link, Karl Kessler writes:

 

"SAP is not repositioning new Java-based program models in the context of SAP NetWeaver AS Java. The adoption of new standards and innovative programming models are reflected in SAP's in-memory and cloud plaforms."

 

This is clear enough, isn't it? No EE 6, no EE 7. Let us be grateful for what we get: Java 8 and with it connection to current open source innovations and NWDS on Eclipse Luna. (Hopefully from now on as plugins so that we are not stuck to this version for 5 years again.)

And I believe Karl that adoption to Java 8 is a "major task to undertake". It is far better that this is done in good quality than to overcharge the development team with upgrade to Java EE 7.

We can just take apache olingo and develop cool SAPUI5 screens anyway.

 

IMHO I rather expect an on-premise TomEE (used in HANA Cloud Platform) as additional product and in the long term successor for NetWeaver Java than SAP will leverage the current NetWeaver code to support Java EE 7 or above.

 

IMHO2 the EE 5 is already a good program model. There are other platforms at SAP that have a long way to get there.

 

Regards

Rolf


Re: Automatização Impressão do Danfe

SRM Services Procurement SUS

$
0
0

Hi Masters.

 

I am working on MM-SUS service Procurement   ECC6.0 and SRM 7.1 respectively.  we have bisness Function LOG_MM_P2PSE_1 ON.

 

 

 

We created an Purchase Order with Services items , that PO is sended to SUS OK .  so we made Service Acceptance on ML81n  but no one interface is send to SUS  like ServiceAcknowledgementERPNotification_Out or ServiceAcknowledgementERPConfirmation_Out,  we don´t see nothing on SXI_MONITOR

 

some idea what is necesary activate to send Services interfaces.

 

thanks on Advance.

How to discover the user internal e-mail in Cloud for Travel

$
0
0

Hello People

 

I know there is a funcionality where the user can create expense reports directly from e-mail, for this the user needs to send an e-mail directly to his internal e-mail in the system.

 

I just don't know how to discover this internal e-mail.

 

Doesn't anyone know how?

 

Best Regards,

Emerson

What is causing bad performance?

$
0
0

Hello,

 

I am writing an extract program and it runs very slow when I give a date range. When I just give one date it runs in 2 seconds... a range of dates can take 5-6 minutes. Do you have any ideas of how to improve performance?

 

TABLES: likp,

         lips.

 

DATA: lv_filepath   TYPE char100.

*================================================================================*

* INITIALIZATION *

*================================================================================*

INITIALIZATION.

   CONCATENATE: '/usr/sap' sy-sysid 'interfaces/fi' INTO lv_filepath SEPARATED BY '/'.

*================================================================================*

* SELECTION SCREEN *

*================================================================================*

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

*Outbound delivery type

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-002.

   SELECT-OPTIONS s_lfart FOR likp-lfart OBLIGATORY DEFAULT 'ZNL1'.

   SELECTION-SCREEN END OF LINE.

*Shipping point

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-003.

   SELECT-OPTIONS s_vstel FOR likp-vstel OBLIGATORY.

   SELECTION-SCREEN END OF LINE.

*Outbound delivery #

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-004.

   SELECT-OPTIONS s_vbeln FOR likp-vbeln.

   SELECTION-SCREEN END OF LINE.

*Actual PGI date

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-005.

   SELECT-OPTIONS s_wadat FOR likp-wadat_ist OBLIGATORY.

   SELECTION-SCREEN END OF LINE.

*Material number

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-006.

   SELECT-OPTIONS s_matnr FOR lips-matnr.

   SELECTION-SCREEN END OF LINE.

*Goods movement status for header (unchangeable)

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-008.

   PARAMETERS p_wbstk TYPE wbstk DEFAULT 'C' OBLIGATORY MODIF ID 001.

   p_wbstk = 'C'.

   SELECTION-SCREEN END OF LINE.

*Goods movement status for material (unchangeable)

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-009.

   PARAMETERS p_wbsta TYPE wbsta DEFAULT 'C' OBLIGATORY MODIF ID 001.

   p_wbsta = 'C'.

   SELECTION-SCREEN END OF LINE.

*File path

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-007.

   PARAMETERS p_file TYPE char100 DEFAULT lv_filepath LOWER CASE OBLIGATORY.

   p_file = lv_filepath.

   SELECTION-SCREEN END OF LINE.

*Job log with detail

   SELECTION-SCREEN BEGIN OF LINE.

   SELECTION-SCREEN COMMENT 2(48) text-010.

   PARAMETERS p_check AS CHECKBOX.

   SELECTION-SCREEN END OF LINE.

   SELECTION-SCREEN END OF BLOCK a1.

*Make goods movement status unchangeable

AT SELECTION-SCREEN OUTPUT.

   LOOP AT SCREEN.

     IF screen-group1 = '001'.

       screen-input = 0.

       MODIFY SCREEN.

     ENDIF.

   ENDLOOP.

*================================================================================*

* START OF SELECTION *

*================================================================================*

START-OF-SELECTION.

*================================================================================*

* DATA DECLARATION *

*================================================================================*

   TYPES: BEGIN OF ty_matinfo,

            werks     TYPE werks,

            matnr     TYPE matnr,

            comp      TYPE matnr,

            maktx     TYPE maktx, "component description

            gamng     TYPE bdmng,

            sto       TYPE lips-vgbel,

            sto_pos   TYPE lips-vgpos,

            deliv     TYPE lips-vbeln,

            deliv_pos TYPE lips-posnr,

            po_num    TYPE lips-vbelv,

            po_pos    TYPE lips-posnv,

            uom       TYPE meins,

          END OF ty_matinfo.

 

   TYPES: BEGIN OF ty_likp,

            vbeln TYPE vbeln,

            vstel TYPE vstel,

          END OF ty_likp.

 

   TYPES: BEGIN OF ty_lips,

            vbeln TYPE vbeln,

            posnr TYPE posnr,

            matnr TYPE matnr,

            werks TYPE werks,

            vbelv TYPE vbelv,

            posnv TYPE posnv,

            vgbel TYPE vgbel,

            vgpos TYPE vgpos,

            mtart TYPE mtart,

          END OF ty_lips.

 

   DATA: it_matinfo   TYPE TABLE OF ty_matinfo,

         wa_matinfo   LIKE LINE OF it_matinfo,

         it_lips      TYPE TABLE OF ty_lips,

         wa_lips      LIKE LINE OF it_lips,

         it_likp      TYPE TABLE OF ty_likp,

         wa_likp      LIKE LINE OF it_likp,

         lv_wbstk     TYPE bestk,

         lv_wbsta     TYPE wbsta,

         lv_aufnr     TYPE aufnr,

         lv_posnr     TYPE posnr,

         it_component TYPE TABLE OF bapi_order_component,

         wa_component LIKE LINE OF it_component,

         lv_quantity  TYPE char25,

         file         TYPE string,

         wa_bapi      TYPE bapi_pp_order_objects,

         lv_count(15) TYPE c,

         lv_message   TYPE char100,

         count        TYPE int4.

*================================================================================*

* SELECT STATEMENTS *

*================================================================================*

   IF s_vbeln IS NOT INITIAL. "If user provided deliveries go directly to LIPS

     SELECT vbeln posnr matnr werks vbelv posnv vgbel vgpos mtart FROM lips

       INTO CORRESPONDING FIELDS OF TABLE it_lips

       WHERE vbeln IN s_vbeln

       AND   matnr IN s_matnr.

     IF it_lips IS INITIAL.

       MESSAGE 'No deliveries found. Please check selection criteria.' TYPE 'I'.

     ENDIF.

   ELSE. "If no deliveries were provided we need to first go into LIKP

     SELECT vbeln vstel FROM likp

       INTO CORRESPONDING FIELDS OF TABLE it_likp

       WHERE wadat_ist IN s_wadat

       AND   vstel IN s_vstel

       AND   lfart IN s_lfart.

     IF it_likp IS INITIAL.

       MESSAGE 'No deliveries found. Please check selection criteria.' TYPE 'I'.

     ELSE.

       SELECT vbeln posnr matnr werks vbelv posnv vgbel vgpos mtart FROM lips

         INTO CORRESPONDING FIELDS OF TABLE it_lips

         FOR ALL ENTRIES IN it_likp

         WHERE vbeln = it_likp-vbeln

         AND   matnr IN s_matnr

         AND   mtart = 'KMAT'. "Only want KMAT records

       IF it_lips IS INITIAL.

         MESSAGE 'No deliveries found. Please check selection criteria.' TYPE 'I'.

       ENDIF.

     ENDIF.

   ENDIF.

Re: Issue in SAPOSS RFC

$
0
0

Hi Nadeem,

 

Thank you for your response...

 

Telnet connection is working fine from our Sap Server.

 

As i have mentioned that the the SAPOSS rfc is working fine with the other 3 Sap Instances which has been installed in the same server, getting issue only with one instance.

 

Also we have assigned correct permission in the route tab for this server.

 

Suggest me how to move forward.

 

Regards,

Krishna.M

Re: Automatização Impressão do Danfe

$
0
0

Coloca um COMMIT WORK. após executar a função em background task e tente novamente.

Re: SQL Analytic Privilege

$
0
0

Lars Breddemann,Monissha AgilThomas Jung

 

Do we have any solution for this. We are also having same issue where we just changed analytic privilege to 'SQL Analytic Privilege' and the data preview throwing error as 'Insufficient Privilege'.

 

The same thing has been tried with SYSTEM user however the issue remains same.

 

Are we missing any privileges?

 

Regards,

Venkat N.


Inbound Delivery for two different Vendor

$
0
0

Hi all,

 

Here we have  business requirement for importation process.

 

Business Scenario: We have the importation process in where we create for e,g, 70 Purchase Order to different vendors. But the invoice partner is the same trading partner. So I have 70 PO that I must pay to only one partner. However, it will arrive in my plant in only 1 transport. But I must use a Inbound Delivery to control de confirmation and the goods provider are diferent.

 

So the requirement is: Someone knows if is possible in SAP to create only one inbound delivery to various purchase orders (with diferent vendors)?

 

Thanks

Gian

Re: Query in Classed recording in MIC

$
0
0

Hi Craig,                                                                                                                        Thank you. But i am still struggling to understand the usage and how the plausibility limits play a role in valuating an inspection. It would be grateful if u can explain with an simple example

Binding a list of strings

$
0
0

Is there a way to bind an array of strings to a list in the view?

 

I know how this is done if the array consists of objects. For example, if I had an array testData consisting of objects with property "text", I could do the following:

<List items="{testModel>/testData}">

  <StandardListItem title="text" />

</List>

 

But what if testData consisted of strings?

Re: Automated way to backup Data Service Batch Jobs / Data Flows?

$
0
0

Hello Tiffany, assuming your repositories are SQL server databases, having database credentials,

 

For jobs export:

"%LINK_DIR%\bin\al_engine.exe" -NMicrosoft_SQL_Server -passphraseATL -U<UserName> -P<Password> -S<Host> -Q<Database> -Xp@J@"<FilePath>\<FileName>.atl"

 

For Dataflows export:

"%LINK_DIR%\bin\al_engine.exe" -NMicrosoft_SQL_Server -passphraseATL -U<UserName> -P<Password> -S<Host> -Q<Database> -Xp@D@"<FilePath>\<FileName>.atl"

 

Create a batch file with above two commands, append current timestamp to file name and schedule the batch file from task scheduler.

For more details on the command usage, execute "%LINK_DIR%\bin\al_engine.exe" from command prompt or refer attachment.

Auto Refresh Web Dynpro Component

$
0
0

Hello Friends,

 

I have recently developed a Web Dynpro application , which would auto refresh for every 5 mins. Its just a display report with Selection Screen and ALV table. Used Timed Trigger to achieve this.

 

Users are running this WD application all the day. They rarely close it, as they track the status of each event in Shipment every 5 mins.

 

Maintained Service with Authorization Id and Load Balancing options.

 

Here is my question:

Does the WD auto refreshing and executing for every 5 mins has any impact on the application system. Will it have adverse impact on memory or any other that would make the system to crash  or shut down.

 

 

Thanks,

KC

Re: GUID issue with ABC/XYZ Classification and Forecast Optimization

$
0
0

Hello Stephanie,

 

My experience with ABC_XYZ is very limited to study/research/POC.

 

However I have worked on the problem of GUIDs created by Forecast Job and Profile Assigned by Planners for the same selection description.  We were to solve this issue of double entries - two or more forecast profiles for same selection by using Z program.  We had developed Z program to do the GUID merge when they are more than one assignments.

 

Idea is program will replace the Batch job GUID(s) by Interactive GUID. Doing so, all the parameters and strategies maintained in Interactive forecast run will be applicable during monthly/Weejly forecast batch run. Generally, this program will be scheduled to run on every month before monthly batch forecast run takes place. Montly job run will happen to copy all interactive GUID to its corresponding batch GUID. I.e, within the same selection Id.   

 

Entire logic was written by referencing Table - /SAPAPO/DP_FCST2. 

 

Hope this will help.

 

Thank you

Satish Waghmare

Re: WebI SP04 Patch 2 Report refresh BICS issues


Re: GATP: Incoming Order Qty not showing in AC42 after availability check

$
0
0

Dear Sir,

 

I have checked in product master also it is same as config document.

 

 

and rest I have sent to you.

 

I will share the screen short on Monday 21 Sept 2015.

 

Please do consider  this.

 

Warm Regards,

 

Sanjeet Kumar

Horas extras

$
0
0

Buenas tardes:

 

Espero me puedan guiar para ver si corrige este problema:

 

Un empleado tiene asignado un horario donde descansa entre semana y el domingo (día normal de trabajo) trabajo horas extras (2 horas) y al calcular nomina se pagaron como triples

 

¿Lo de horas extras es por configuración? ¿alguien tendrá un manual o me puede indicar los pasos para corregir este tema?

 

Gracias por su atención

 

Octavio Dávila

Document Flow (SQL Help)

$
0
0

I could use some assistance in writing a query to list ALL Sales Orders, and their related documents.  For example:

2015-09-19_13-32-22.jpg

This would be somewhat straightforward if the Target Document of a SO was always a Delivery Note, but this is not the case.  Most of the orders are a traditional document flow:

2015-09-19_13-54-04.jpg

However, many times this is the case:

2015-09-19_13-47-43.jpg

Complicating even more, in the company's early history, Delivery Notes were not even used:

2015-09-19_13-56-53.jpg

Re: Copy operator strange behaviour

$
0
0

Hi,

 

Use case: We have around 815 key figures from which 374 are stored from which 212 are user inputs. Now it is cumbersome to insert data for 212 key figures for the new time bucket (added at the end) added in each S&OP cycle. So we are running an autofill job (peroid_shift parameter) that will fill the data in newly added bucket with the last but one period's data. The user has to just review the data for the new bucket and make changes only if necessary.

 

With the help of SAP, we were successful in running a copy operator with 168 source and 168 target KF. The job ran for 5 minutes but ran successfully.

 

We modified SAPCM_COPY_EXECUTE HDBPROCEDURE (SAP Note 2213864).

 

Regards,

Aditya G

Re: Business Partner replication issue.

$
0
0

Hi Ellen,

 

Thanks for your valuable suggestion, here my case is that we have number ranges (all) 1 - 999 for BP replication and want to not replicate BPs from 200-299, apart these BPs(200-299) other all BP should be replicated to ECC. Please suggest me the best way or best practice for this issue(whether setting filter in R3AC1 or in SMOEAC).

 

Thanks and Regards,
Venkat

Viewing all 8746 articles
Browse latest View live




Latest Images