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

Re: Books for SAP-HR?


File to Proxy Scenario Error

$
0
0

Hi Experts,

 

I am working on File To Proxy Scenario. I am getting the below Error: The Messages in SXMB_MONI are going to AUtomatically Restart Status. I see some Queues with RETRY Status in SMQ2. When i am testing from SPROXY, the Table is Updated with the Corresponding Values. But when i place the file in the ftp folder then i am getting this error.

 

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>

-<!--

 Call Adapter 

--> 

-<SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">

 

 

<SAP:Category>XIServer</SAP:Category>

 

 

<SAP:Code area="INTERNAL">CLIENT_SEND_FAILED</SAP:Code>

 

 

<SAP:P1>500</SAP:P1>

 

 

<SAP:P2>Internal Server Error</SAP:P2>

 

 

<SAP:P3>(See attachment HTMLError for details)</SAP:P3>

 

 

<SAP:P4/>

 

 

<SAP:AdditionalText/>

 

 

<SAP:Stack>Error while sending by HTTP (error code: 500, error text: Internal Server Error) (See attachment HTMLError for details)</SAP:Stack>

 

 

<SAP:Retry>A</SAP:Retry>

 

</SAP:Error>

 

Please check and do the needful .

 

Regards,

GIRIDHAR

Re: Active Option in Eclipse Solution Explorer Team Sub Menu

$
0
0

Hi Muhammad, thanks for the help. I have used your advise and have now got it working correctly

Re: Distribution receipt can not be deleted manually in planning book

$
0
0

You need to delete it by loading the source loc - prod combination.. the origin of supply (supplying plant)

ABAP Code Error

$
0
0

Hi Experts,

 

Please check and do the needful . I am getting the error as 

 

Error analysis

    An exception occurred that is explained in detail below.

    The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught

     and

    therefore caused a runtime error.

    The reason for the exception is:

    In a SELECT access, the read file could not be placed in the target

    field provided.

    Either the conversion is not supported for the type of the target field,

    the target field is too small to include the value, or the data does not

    have the format required for the target field.

 

 

ABAP Code:

 

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

*& Report  ZPROXY_MAT

*&

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

*&

*&

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

 

 

REPORT  ZPROXY_MAT.

 

 

TABLES:ZMAT_TEST.

 

 

 

 

DATA:lt_mara TYPE STANDARD TABLE OF ZMAT_TEST ,

     ls_mara TYPE ZMAT_TEST.

DATA:client_proxy type REF TO ZCO_MATERIAL_SOURCE_SI,

     fs_mara TYPE ZMATERIAL_SOURCE_MATERIAL,

     t_mara TYPE ZMATERIAL_SOURCE_MATERIAL,

     ts_mara TYPE ZMATERIAL_SOURCE_MT,

     sys_fault TYPE REF TO cx_ai_system_fault.

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE t1.

*.PARAMETERS:p_matnr TYPE ZMAT_TEST-MATERIAL_NMBER.

  Select-OPTIONS:s_matnr FOR ZMAT_TEST-MATERIAL_NMBER.

SELECTION-SCREEN end of BLOCK b1.

 

 

 

 

CREATE OBJECT client_proxy.

CREATE OBJECT sys_fault.

*t1='material'.

 

 

 

 

SELECT MATERIAL_NMBER

       MATERIAL_DESCRIP

       MAINTAIN_STATUS

       CREATEDBY

       CREATEDON

       from ZMAT_TEST into TABLE ls_mara where  MATERIAL_NMBER in s_matnr.

 

 

*  ENDSELECT.

  IF sy-subrc eq 0.

 

 

    LOOP AT lt_mara into ls_mara.

      WRITE:/ ls_mara-MATERIAL_NMBER,

              ls_mara-MATERIAL_DESCRIP,

              ls_mara-MAINTAIN_STATUS,

              ls_mara-CREATEDBY,

              ls_mara-CREATEDON.

    ENDLOOP.

  else.

 

 

    write:/'data not found'.

  ENDIF.

  sort lt_mara by MATERIAL_NMBER.

  READ TABLE lT_MARA  INTO ls_mara

    WITH KEY MATERIAL_NMBER = s_matnr BINARY SEARCH.

 

 

  fs_mara-MATERIAL_NUMBER = ls_mara-MATERIAL_NMBER.

  fs_mara-MATERIAL_DESCRIPtion = ls_mara-MATERIAL_DESCRIP.

  fs_mara-MAINTENANCE_STATUS = ls_mara-MAINTAIN_STATUS.

  fs_mara-CREATED_BY = ls_mara-CREATEDBY.

  fs_mara-CREATED_ON = ls_mara-CREATEDON.

 

 

  TRY.

      ts_mara-MATERIAL_SOURCE_MT-material = fs_mara.

      call method client_proxy->EXECUTE_ASYNCHRONOUS

              EXPORTING

          output = ts_mara.

      commit WORK.

      WRITE:/ 'data processed sucessfully'.

 

 

    CATCH  cx_ai_system_fault INTO sys_fault.

      write:/'system error'.

 

 

  ENDTRY.

 

Regards,

GIRIDHAR

How to manage water in BOMs ?

$
0
0

Hi all,

 

what's the best way to manage water in BOMs ?

I setup Water as a Pipe / Backflush Material. It is important to see in the BOMs the water quantities they have to use in production.

The Problem is that the quantity of water is low (some liters). By doing the backflush the price calculated for 2 or 3 liters is very small : 0.0000...

and the position autmatically appears in transaction COGI because of price = 0.

How can I avoid that ?

 

Thanks in advance for wour help.

 

Fred

Re: BO Sizing - 3 Tier

$
0
0

Hi Jim,

 

That's entirely normal and good practice and pretty well documented in the pattern books.

The only thing I have never done is use the default database as a standalone installation although it should be possible.  Many people use their own database deployments as they will already have established backup and DR processes.

It's good practice as you can expand individual tiers without changing affecting the overall architecture.  For larger deployments you can even separate the management (CMS and supporting servers) from the reporting servers but that may be overkill for you.

Re: In purchase order condition tab is not appearing

$
0
0

In addition to Mr.Jurgen ,

 

User parameter can be reason like a EFB parameter that you can see in SU01. Please check it...

 

User might be restricted for conditions.

 

Regards.

 

M.Ozgur Unal


Re: SAP Business One 9 on HANA - AddOn "AddOnName" Installation Failed

$
0
0

Thanks Silambu for the answer, but i did the .ard with the 64 bit check selected...as i said the add-on work correctly in SAP BOne 9 for SQL Server...the problem is in the SAP BOne 9 for HANA.

SAP Beginner - Help

$
0
0

Hi  All

 

I was with an mnc earlier and its been sometime since I quit the job. Now that I m planning to work again an it looks like its difficult out there to get a job as its been a huge gap like 4 years and an I have only 1.8 years of exp.

 

So can someone tell me if I can go ahead an do Sap certification. Will it help?

Is there a chance of gettin a job with SAP certification.

 

I was earlier working on .net... I dont have a very good domain knowledge though.

Was into health care for some time.

 

Please help...

DTP activation error. PSA metadata inconsistent.

$
0
0

Hi Gurus

I have been trying to activate a delta DTP from DSO to cube. It is leading to error PSA metadata is inconsistent.

 

Diagnosis

You want to generate PSA/BIC?B00006115(technical name /BIC/B00061150002) but PSA meta data is inconsistent. One possible reason could be required repartitioning

 

 

I have searched SCN but could not find only couple of threads which were not really helpful.

 

 

If any body can assist me with it would be great and points will be awarded.

 

 

Thanks

Naveen

Re: OLAP Prompt Screen - Default Settings?

$
0
0

Hello Jonathan

 

Please refer to section 7.6 of the Analysis OLAP Administrator Guide.

 

There is a property in the mdas.properties file "multidimensional.services.prompt.dialog.show.all=false" which should be changed to true.

 

This will display all prompts. You will still need to do "Expand All".

 

The current behaviour of defaulting to "Required" only (which are expanded by default) and not showing "Optional" prompts (which are collapsed by default) is based on customer feedback and significantly simplifies the prompt dialog.

 

Another way of optimising prompts is to use variants (these are created within the prompt dialog). Each user can set up their own varient (or use public varients) and they can also choose one to be a default.

 

Regards

Ian

Re: Publications and Internet Explorer

$
0
0

Hi Arvind,

 

Alllaptopshave the same behavior.

 

 

Regards

Re: SAP MDG - User configuration

$
0
0

The question about NWBC not showing the right links. Is this still a problem? If so, you can assign the MDG-S roles to all users involved in the process. If NWBC is not a problem any more, you need to close this discussion and open a new one with the new problem.

Changing not possible; field is read-only

$
0
0

Hello,

 

I need update Expected Value in Opportunity.

 

Expected Value is bound Opportunity.SalesForecast.ExpectedRevenueAmount.content.

 

When I try to update in adsl, "Changing not possible; field is read-only" error appears in frontend to the user.

 

expfield.png

 

exppdi.png

 

 

Thanks!


EQUI - CLASS tx IE31

$
0
0

Spanish:

Hola, estoy teniendo un problema en la creación de equipos [IE31].
Si en la creación de un equipo [objeto] asocio una clase, me informa el número del equipo de SAP asignado, pero ahora hay un error: SAPSQL_ARRAY_INSERT_DUPR. Entonces trato de introducir el número asignado por SAP, pero el sistema me dice que "no hay equipo [objeto]."
Pero cuando yo creo y no asocia ninguna clase, pero salgo y luego conecto con IE02 con el número asignado por SAP y lo asocio a una clase no produce el error.


Mi observación:
En la creación del equipo de SAP el número asignado por defecto antes de generar el número final es el TM0000000001IE. Cuando le asigno una clase al mismo tiempo la creación se produce el error. Para mí es porque este número genérico [TM0000000001IE] ya tiene una clase asociada.
Esto no debe, cuando quiero mostrar el equipo TM0000000001IE, el sistema me dice que "no hay equipo [objeto]." Pero luego me conecto con CL30N listo, puedo ver que este equipo [TM0000000001IE] tiene una clase asociada. ¿Cómo puedo hacer para corregir esto? ¿Alguien le ha pasado esto? El equipo TM0000000001IE no debe tener una clase asociada.

 


English:
Hi, I am having a problem in creating teams [IE31].

If in the creation of a team [object] I associate a class, informs me the number of assigned SAP team, but now there is an error: SAPSQL_ARRAY_INSERT_DUPR. Then I try to enter the number assigned by SAP but the system tells me that "there is not  team [object]."

But when I believe and not associate any class, but I go out and then login with IE02 with the number assigned by SAP and I associate a class does not produce the error.

My observation:

In creating the team SAP the number assigned by default before to generate the final number is the TM0000000001IE. When I assign a class at the same time creating the error occurs. For me is because this generic number [TM0000000001IE] already has an associated class.

This should not, when I want to display the TM0000000001IE team, the system tells me that "there is not  team [object]." But I then login me with CL30N ready, I can see that this Team [TM0000000001IE] has an associated class. How I can do to correct this? Does anyone this ever happened?  The TM0000000001IE team must not have a associate class.

How to get the transaction called indirectly inside an ABAP program?

$
0
0

Hi All,

 

I need to find the list of transactions indirectly called when I invoke a transaction. I have tried to use the table TCDCOUPLES.  But it does not have any entries for the given tcode. Could anyone help me on where do I need to see the list of tcodes indirectly called ?

Re: Calculate size of attachments FI documents

$
0
0

thanks Arthur!

whatdatashould Iputwhen I runthe function?

do you know if is there a formula or mechanism to calculate howthe basewill growin the futureaccording todocumentscontaining attach?


regards!

Re: Problem when using a different data element in Employee Tab Contact Info

$
0
0

In the .delta\AppResources\dataelementconfiguration folder I have:

 

- OrgUnitHierarchyDataElement

- OrgUnitHierarchyDataElementForAnalytics_Staged

- PositionHierarchyDataElement

- UserPopulationInfo

- My custom data element.

 

PositionDetailDataElement is not in there ...

Re: Different stock in WM and IM!!!

$
0
0

Read the information about the transaction by pressing the info button - blue i button.
You can also take a look at the note 535043.

 

This is perfectly normal to happen in a system, it's just an inconsistency which happens
in some reasons mostly technical, doesn't have to do anything with your functional settings,
so don't worry about it, just check LX23 in test mode from time to time, you can see all the
inconsistencies there, and periodically fix them (post).

Viewing all 8667 articles
Browse latest View live




Latest Images