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

Re: Manaully populate graph/crosstab/etc....

$
0
0

We are on DS 1.5 if that helps any.


Re: "CALL "CHECK_TABLE_CONSISTENCY" ( ?, ?, ? )"

$
0
0

Hi Rene,

 

Going by the error you seem to come across OOM situation while the Consistency check is running on the HANA system

We are on HANA 97.02 and have not seen any such errors yet during Consistency check

In fact the below SAP release notes for 97.02 confirms such OOM situation has been corrected, so this one could be a new issue that needs a correction

 

http://service.sap.com/sap/support/notes/2200738

 

Please check if any OOM dump has been generated and open a SAP support incident to understand the cause of the error

 

Hope it helps

 

Sunil

Re: Quality without namespace/Prod with namespace

$
0
0

Cool, then be polite and mark question as answered!

Re: How to find activity created by in cj20n

$
0
0

hi maria

I  want to know by whom this activity is created.

Re: Strange post

$
0
0

Well, it must be an urgent client requirement, so you gotta do "the needful".

Re: ALV tree modificar disposición

$
0
0

Buen día Ramón.

 

Según lo que entiendo, lo que necesitas es que en el ALV se muestren totalizadas las columnas Importe Debe, Importe Haber e Import ML y además se generen varios subotales según unos criterios específicos, sin tener que modificar manualmente el layout del ALV.

 

Para hacer esto, en primer lugar debes activar las opciones de totales y subtotales en el ordenamiento del ALV.  Esto lo puedes hacer agregando las siguientes líneas a la tabla lt_sort:

 

  wa_sort-fieldname = 'KUNNR'.<----- Campo por el cual quieres totalizar.  Ejemplo:cliente KUNNR

  wa_sort-up = 'X'.

  wa_sort-subtot = 'X'.

  wa_sort-tabname = 'IT_OUTPUT'.

  APPEND wa_sort TO lt_sort.

 

Haces esto para cada campo por el cual quieres que se presente subtotal.

 

Adicionalmente, al crear el catalogo debes indicar las columnas que quieres totalizar de la siguiente forma:

 

   wa_fieldcat-fieldname   = 'DMBTR_DEBE'.

   wa_fieldcat-seltext   = 'Total Debe'.

   wa_fieldcat-reptext 'Total Debe'.

   wa_fieldcat-do_sum    = 'X'                .<-----  Esta línea indica que la columna se va a totalizar

   APPEND wa_fieldcat TO it_lvcfcat.

   CLEAR  wa_fieldcat.

 

     wa_fieldcat-fieldname   = 'DMBTR_HABER'.

   wa_fieldcat-seltext   = 'Total Haber'.

   wa_fieldcat-reptext 'Total Haber'.

   wa_fieldcat-do_sum    = 'X'                .<-----  Esta línea indica que la columna se va a totalizar

   APPEND wa_fieldcat TO it_lvcfcat.

   CLEAR  wa_fieldcat.

 

Para finalizar, si quieres que alguna columna quede oculta en la dispoisición, puedes agregar la siguiente linea al definir el catalogo:

 

wa_fieldcat-no_out = 'X'.

 

Espero que esta respuesta te sea de utilidad.  Si requieres algo mas por favor me cuentas.

 

Saludos,

 

Dairo Lozano

Re: Error during MIGO-ABAP Run time error(MESSAGE_TYPE_X)

$
0
0

If you would search SCN with the error message number that is directly visible in your screen from the dump then you had the solution already found more than 2,5 hours ago.

Re: Interface building question

$
0
0

Hello Ralf,

 

the class uses data references to store *everything* in its parameter list. A documentation for this technique can be found in SAP-Help via http://help.sap.com/saphelp_nw70/helpdata/en/14/11e70b0c5c11d3b9350000e8353423/content.htm?fullscreen=true.

 

I will try to explain this in short…

 

The Type of mt_parameter is the following:

 

  types:
BEGIN OF s_parameter,
key TYPE string,
value TYPE REF TO data,
END OF s_parameter .

 

Here you can see the special typing „TYPE REF TO data“ of field value. This is a so called data reference. Such fields can store pointers to any other variables (simple fields, structures, internal tables, object references, …). Data references can be created via statement GET REFERENCE OF and are accessed via ASSIGN with addition „->*”.

 

The other field in MT_PARAMETER is key. The class uses it to identify each data reference and allows to access it via GET_VALUE method.

 

Here you can see a short sample report:

 

DATA: lr_parameter   TYPE REF TO cl_fpm_parameter,
lt_mara_input 
TYPE STANDARD TABLE OF mara,
lt_mara_output
TYPE STANDARD TABLE OF mara.


SELECT * UP TO 10 ROWS FROM mara INTO TABLE lt_mara_input.

CREATE OBJECT lr_parameter.

lr_parameter
->if_fpm_parameter~set_value(
EXPORTING
iv_key  
= `MaterialList`
iv_value
= lt_mara_input
).

lr_parameter
->if_fpm_parameter~get_value(
EXPORTING
iv_key  
= `MaterialList`
IMPORTING
ev_value
= lt_mara_output
).

 

For your requirement, I would suggest to use a class or interface similar to CL_FPM_PARAMETER as method parameter.

 

The application that calls your method needs to create an object of CL_FPM_PARAMETER and uses SET_VALUE method to fill it with the variables. Your method can then use GET_VALUE method to access the data that was passed to it. Please pay attention that both the caller and the called class needs to use the same identifier to set and get values (you should use constants to enforce this).

 

Best regards,

Alej


Re: Receiver JMS Adapter Error in 7.4

$
0
0

Hi Siva,

 

Did you get a resolution to your error ? I am also getting the same error in receiver JMS channel.

 

MP: exception caught with cause com.sap.aii.adapter.jms.core.fsm.DFA$InvalidTransitionException: No transition found from state: ERROR, on event: process_commence for DFA: CC_TRY_JMS_OMS:117bf4973aa33306a7577fe325f80f45

 

 

Exception caught by adapter framework: No transition found from state: ERROR, on event: process_commence for DFA: CC_TRY_JMS_OMS:117bf4973aa33306a7577fe325f80f45

 

 

 

Transmitting the message to endpoint <local> using connection SFTP_http://sap.com/xi/XI/SFTP failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.jms.core.fsm.DFA$InvalidTransitionException: No transition found from state: ERROR, on event: process_commence for DFA: CC_TRY_JMS_OMS:117bf4973aa33306a7577fe325f80f45

 

If others have an answer to my question, kindly let me know.

 

Thanks,

Rajesh

Re: Error during MIGO-ABAP Run time error(MESSAGE_TYPE_X)

$
0
0

Hi Sai,

 

I am not sending GR details to any other destination, just doing a normal GR only and it is showing Break point at "91" in ST22.



Regards,

VR

Re: Profit Center to Copa Profitability Transfer

Re: Conversion Factor for PCE to NAR

$
0
0

Sure we had this too, our workaround is to create materials.

you can as well exclude this PO from Intrastat run and maintain it manually in VEFU for the declaration.

The problem is that you have no field for the convertion ratio or for direct entry of a quantity in supplement unit in the PO item itself.

And looking at your units, PCE is a dimensionless unit, so there is no SI unit for a conversion ratio in the unit of measures itself.

Hence the only way is to look at the alternative units from material master to know how much PCE are how much NAR.

Re: Job chain comparison betwwen different landscape in CPS like between dev and quality system

$
0
0

There is no direct method, you will have to extract reports and compare them in excel.

 

thanks

Nanda

Re: RA and Settlement

$
0
0

Hi Rao,

 

Did you resolve this issue? I have a similar problem but in my case the calculated RA shows on project result but not on CJI3.

If so please post the solution.

 

Thanks,

Krish

How to configure VAT of Category COMPOSITION

$
0
0

We have Formulas which contain COMPOSITIONs of Ingredients.  When entering the quantities of individual components we can enter: Component (by ingredient specification number) Component Type, Value (Quantity), UOM, Lower and Upper Limits.

 

I have worked with standard VAT's and their corresponding Classes and Characteristics.  In this case I can not determine how to configure the COMPOSITION tab to change the order of data entry, the number of allowed decimal points or change how the data is entered.  I can find the Class as given by the Property Tree and the Component Type.

 

Where are these fields configured and how to best do it?

 

Any help would be appreciated.

Regards

Mick Crowder


Re: The Password Problem with Eclipse in conjunction with HCP

$
0
0

I don't understand the Problem? normaly you are registered as an developer right? So you need some kinde of user and you can access the cockpit via SSO and you don't know the your password?

 

So either upload via cockpit or ask one of the Admins to deliver you an encrypted maven password which you could use to deploy via maven.

SAP HANA Cloud Platform Java Web Maven Plugin -

see section encrypting passwords.

 

Other solution i don't kno but i doubt that there is any in eclipse. Maybe there is a way with neo commandline? Still the above process is only for deploying, starting etc. if you want to connect to the application to debug it it wont be of any use..

Talent Profile not accessible in ESS & MSS Portal 7.4

$
0
0

Hi Friends,

 

Our ECC system is on EHP7 and the Portal is on 7.4.

 

 

In ESS, when accessing the Talent Profile, we get the message "You Do Not Have Display Authorization".

ESS Talent Profile.png

In MSS, when the Manager tries to access the Talent Profile, all he can see is a blank screen, no errors nor any messages.

MSS Talent Profile.png

 

Has anyone of you experts come across such scenarios? Please do share your expertise.

 

Thank you.

 

Regards,

Vish

Re: RA and Settlement

$
0
0

Hi Paulo,

 

I had a similar problem. But in my the RA calculated revenue account was created as cost element.

The POC based RA calculated revenue shows in projects result CJIF and also unbilled is debited.

But the calculated RA does not show up on the CJI3 or any other project actual reports and revenue for that month.

Can you suggest what could be missing here?

 

Thanks,

Krishna

Re: BPC 10 MS - can't send data

$
0
0

Thanks, I was aware of the lock tables but hadn't gone into the sg ones.  Good to know.

 

A reboot fixed the problem but looks like restarting the service may have done the trick as well.

 

Thanks for your responses!

Re: Auto updation in Batch for FG

Viewing all 8746 articles
Browse latest View live




Latest Images