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

Re: Issue regarding NWDI deployment (Waiting SC also got imported)

$
0
0

Hi Jun Wu,

 

Thanks for your quick response,

 

1)customer interaction module also got imported ? how you get this conclusion?

 

The modification we did in Customer interaction module also got imported, we have crossed check customer interaction module functionality in production and we could see the changes we did to it.

 

2)are you talking about two dc in one SC?


sales transaction and customer interaction are two different DC's belongs to one SC.

 

Thanks and Regards,

Santosh.B


Re: Webservices response delay

$
0
0

Is it possible to post the code of your RFC(ZHR*FM) behind the Webservice?

Re: CK40N help

$
0
0

Hi Nityanand,

 

How do I do this assuming I have authorization?

 

I have used CK40N in the past and it has worked ok.

 

Regards

 

Kieran

Reset SAP User Password via HANA Database

$
0
0

Dear Experts,

 

Currently, we're struck with an error during SolMan Upgrade using SUM tool. All our SAP systems are CUA configured with our Central System SolMan.

We would like to reset the password for one of the Users of our SAP system (running with HANA database) which is also CUA (central user administration) configured with SolMan. All central user administration activities like create, change and delete user are performed in this central system and we can't reset the password in our HANA based SAP system as SolMan system is struck with Upgrade error.

 

Is there a statement in HANA database simliar to that SQL statement in SQL database in order to reset the password for the SAP User?

 

Thank you in advance for your Efforts.

 

Best regards,

Sreenu

Re: Hazardous Substance Check in GTS with SAPEH&S

$
0
0

Thank you C.B.!!

We will check and get back for any further question regarding this

Re: Outlook Add In causing Outlook to freeze

$
0
0

I have been having similar issues.  I have to start and restart several times for Outlook to work properly.  I am using Outlook 2013 and Office 365 as my email provider.

 

It appears part of the issue has to do with something the plug in is doing on the back end.  It has created a folder called “ManageAppointmentActivityIn1”.  This folder has grown to 49GB and subsequently shut down my email account for being over the size limit.

 

Since that time I have disabled the plug in, removed the plug in from windows, and deleted the all cloud for customer folders visible in outlook on both computers I used the plug in on.  Unfortunately the folder is not visible and had to be deleted via powershell.

 

To everyone’s surprise the folder recreated itself and continues to grow.  Does anyone know about this?  Is there a hook directly from C4C to the email that is creating this folder (maybe others)?

 

Thank you ,

 

Allen.

Export Crystal to PDF giving ReportSDKException: Can not create temp file error

$
0
0

Hello,

We have code that we are trying to use which is supposed to pull a Crystal Report and export into a PDF but are having an issue.

 

QueryHelper q = new QueryHelper(boeHelper);

 

String strQuery = "Select * from CI_INFOOBJECTS where  SI_CUID='" + strCUId + "'";

IInfoStore infoStore = boeHelper.getInfoStore();

IInfoObjects iInfoObjects = infoStore.query(strQuery);

 

if (iInfoObjects == null || iInfoObjects.size() == 0) {

  throw new ReportingException("Error getting the report ID from Business Objects");

}

else {

 

  IInfoObject iDocObject = (IInfoObject) iInfoObjects.get(0);

  IEnterpriseSession enterpriseSession = boeHelper.getSession();

 

  IReportAppFactory reportAppFactory = (IReportAppFactory) enterpriseSession.getService("RASReportFactory");

 

  ReportClientDocument clientDoc = new ReportClientDocument();

        clientDoc = reportAppFactory.openDocument(iDocObject, 0, java.util.Locale.US);

 

        ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream) clientDoc.getPrintOutputController()

    .export(ReportExportFormat.PDF);

 

}

 

The Code works fine all the way down to the export line itself.  When that line executes, we get the following error:

com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Can not create temp file---- Error code:-2147215357 [CRSDK00000615] Error code name:internal

 

We did get another error first: com.crystaldecisions.sdk.occa.managedreports.ras.internal.ManagedRASException: Cannot open report document. --- File Repository Server error : The authentication credentials do not permit the operation. (FWB 00061)  But I was able to get around this one by setting the appropriate permissions on the folders for downloading an object.

 

We do have a general class QueryHelper, which is just a wrapper to do the mundane stuff like logon and establish sessions and iinfostore but that works.

 

 

Does anyone have any ideas?

Thanks,

Nathan

Re: CK40N help

$
0
0

Hi

 

Share your screen shot..

 

 

Also you have to change costing version as 1 as told by Nityanand

 

 

kamal


Re: Installation failed with Signal 6 /hdbnsutil

$
0
0

Its a memory issue , Please upgrade memory on your box

Re: Validation error while creating calculation view

$
0
0

I have a decimal field with length 5 and scale 0 , while the length us fine it does not permit me to define scale as 0

Re: PPM 5.0 Security Guide - Access Control Lists

$
0
0

Thanks again Lashan,

 

That's spot on. One last questions for you: in order to restrict access to the main tabs in the NWBC screens (Portfolio Management, My Portfolio Objects etc.), do we just need to copy the SAP std role SAP_BPR_PPM and remove the WebDynpros we are trying to restrict by?

 

Regards,

 

Colin

Re: MIRO - Ingresar ampliación en Include

$
0
0

Hola Daru,

 

Existe una opción haciendo uso de la BADI MRM_HEADER_CHECK, al implementarla te va a dar acceso al método HEADERDATA_CHECK, en el cual puedes hacer la modificación al campo mwskz.

 

Dentro del método colocarias un código similar al siguiente:

 

    CONSTANTS: lc_ydrseg TYPE string VALUE '(SAPLMR1M)YDRSEG[]'. "Posiciones

    DATA: ls_drseg TYPE mmcr_drseg.

 

    FIELD-SYMBOLS: <fs_lt_ydrseg> TYPE table,

                                 <fs_ls_drseg> TYPE mmcr_drseg.

    ASSIGN (lc_ydrseg) TO <fs_lt_ydrseg>.

 

    IF sy-subrc = 0.

        LOOP AT <fs_lt_ydrseg> ASSIGNING <fs_ls_drseg>.

            <fs_ls_drseg>-mwskz = ''.

         ENDLOOP.

    ENDIF.

 

El valor de la constante lc_ydrseg corresponde a la dirección de memoria donde está el objeto de datos que se quiere modificar, el cual queda asignado al field symbol <fs_lt_ydrseg>.

 

Los datos de cabecera vienen como parámetro del método en el objeto de datos I_RBKPV.

 

Espero esta solución te sirva para hacer lo que necesitas.

 

Saludos.

Buttons on Child Datawindow

$
0
0


We placed a OK and Cancel button on a child dropdown datawindow for a certain column. I cannot seem to detect when the user clicked on either button. We tried get object at pointer and a few other things.

 

Any help is appreciated.

 

Richard

Re: /SCWM/MON - Monitor

$
0
0

Please share the screen for the steps which you are following

Re: GUIDE PLEASE

$
0
0

Hi;

 

you can log on to https://open.sap.com/ and enroll for "Introduction to SuccessFactor solution" and "Run simple HR with SuccessFactor employee Central".

 

Regards

Muaz


Re: ERP -EWM Integration

$
0
0

Please share the long text screen from the error message 1.png

Re: /SCWM/MON - Monitor

$
0
0

Capture.PNG

Dear Manish,

Thanks for your reply. Please find above screen shot. It is staying in this screen for ever(more than 1 hour)

 

Thanks and Regards,

Prabakaran Gurusamy

Re: Vendor issue in SRM

$
0
0

Sankar,

 

You have mentioned:

- Vendor is extended to P.Org V (L.Sys - 100) in SRM but not in VENMAP table -> Where id you check this (portal/bbp* transactions)

- Also you have mentioned Vendor is not in LFA1 table (L.Sys - 100), if vendor is not in ECC how do you expect it to be replicated to SRM -> So, please check (if relevant) in the L.Sys - 200 if the vendor is present in the LFM1 table.

 

Relevant tables:

 

Table BBP_VDSYNC_CUST - LATEST SYNC report

Table BBPNEWVD_LOG - shows which vendor from the back-end newly added.

(Courtesy - https://scn.sap.com/thread/1266778)

 

You can verify in portal to check the P.Org to which a vendor is extended to.

Also, check if this happened for only supplier ?

 

Br,

Raghu

Re: How to Hide or Suppress Value in First Row of the column

$
0
0

Hi Slient

 

Try the below way

 

1.  Select All columns in Crystal Report using CNTRL + Click

2.  Right Click then Click Format Object

3.  Tick the Suppress and Open the Formula Editor

4.  Type RecordNumber = 1

5.  Click Save and Close now first line details will be Suppressed

 

Go to Design Mode

 

1.  Right Click above Details and Select Section Expert

2.  Click Suppress Blank Section and Click OK

 

Hope this will helpful.

 

With Regards

 

Balaji Sampath

creating a function module

$
0
0

Hi All,

 

I am a beginner and i have a simple question below.

 

I am trying to write a function module to get the list of programs that are created on current date.

 

 

 

your help is highly appreciated.

 

Thanks in advance.

Viewing all 8902 articles
Browse latest View live




Latest Images