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

Re: Affordable Care Act (ACA)

$
0
0

Re 2620

 

Angela,

 

we did not have that issue with first names cut off. What release are you on? We are on 608.


Best,


Mathias


Re: Affordable Care Act (ACA)

$
0
0

Ashwani/Mathias/Angela

 

Our production file has been excepted with errors. It is showing error related to TIN Validation failed with repetition as in the screen shot below.  Have you guys faced the same issue. How you guys  went through identifying which employees those have issues. What this error entail into.  Is it related to not matching the SSN and names as posted?

 

We tried to download but downloaded file is blank.

Appreciate your responses.

 

Error.JPG

Thank you,

Rohit

Re: Como agregar campos a un Layout PLD (Lista de partidas abiertas)

$
0
0

Edgar, estaba confundida, pensé que era en otra parte que se hacían las modificaciones...

 

Mil gracias por tu ayuda.

 

Que tengas buen día.

 

Saludos.

Re: Affordable Care Act (ACA)

$
0
0

Re 2624

 

Debbie,

 

that error sounds very familiar. There were some notes that had TR attached and they had to be copied from client 000 to your client. I dot not remember the note# and have to run to a meeting.


Good luck,

 

Mathias

Re: Issue in Query while Executing a Query in APD

$
0
0

Hi Christoph,

 

We are also facing similar issue after change to SAP NW 7.5.Can you please share how you fix this issue?

 

Regards

Amit Singh

Re: last package

$
0
0

Hi Amine, Hi Kush,

 

This code for finding last packet is definitely helpful.

 

Though I have a question, if the DTP runs in parallel , will this work?  I mean the last packet and the last packet -1 or -2 etc., running in parallel.

 

If not how can I ensure that DTP goes in sequential with data packets?

 

Also if I use expert routines, will this work?

 

Regards,

Paul

Re: Report AR01 - Subtotal with texts in CL_GUI_ALV_GRID

$
0
0

Hi,

 

This solution I've already seen. 

 

FIELD-SYMBOLS: <fs> TYPE ANY.

 

  ASSIGN p_e_event_data->m_data->* TO <fs>.

  <fs> = 'TOTAL'(027).

 

 

Then. I adjusted the code and got what I want.

 

Final code:

 

    ASSIGN ep_subtot_line->* TO <fs1>.

    ASSIGN e_event_data->m_data->* TO <fs2>.

 

          CONCATENATE es_subtottxt_info-keyword

                      <fs1>-field

                      'Instalações técnicas'

                 INTO <fs2>

         SEPARATED BY space.

 

RESULTADO FINAL.png

 

Thanks!

Re: How to import BW model With Hierarchy

$
0
0

I think i was solved my problem, I was used the SQL console for join the information and after executes the query, the system show me the desired result . I don't know if in the graphycal layer it's necesary add or retire some filter or option, the other posibilty it's the Hana Studio in my case needs apply some sap note to correct that inconsistence


Re: Failed to analyze instruction /CPMB/FAIL_SWITCH_TO_PLAN Optimize Model

$
0
0

Hi Gersh,

 

/CPMB/FAIL_SWITCH_TO_PLAN if it exists in the process chain

Screenshot_1.jpg

 

This is Package:

Screenshot_2.jpg

 

This is Script:

Screenshot_3.jpg

 

TASK(/CPMB/SWITCH_TO_LOAD,INFOCUBE,%APPBINAME%)

TASK(/CPMB/SWITCH_TO_PLAN,INFOCUBE,%APPBINAME%)

TASK(/CPMB/FAIL_SWITCH_TO_PLAN,INFOCUBE,%APPBINAME%)

TASK(/CPMB/ROLL_UP,DTA_CUBE,%APPBINAME%)

TASK(/CPMB/CREATE_STATISTICS,DTA_CUBE,%APPBINAME%)

TASK(/CPMB/LIGHT_COMPRESS,DTA_CUBE,%APPBINAME%)

 

------

 

Regards,

Re: PO row fields locked after partial Receipt

$
0
0

Hi,

 

Once partially received/delivered, even with open status, it is not possible to UDF values. This is standard system behavior.

 

Thanks

Re: Buenos dias a todos

$
0
0

Bunas tarde Julian


Para mi anterior pregunta ulice la opcion 1# de Chris (tablas externas) y me dio buen resultado


, pero me gustaria saber  sobre :PipeLine para importar los TXT  a tabla , me podria decir donde puedo encontrar un ejemplo


Gracias

BI 4.1 CMC Servers/Users and groups tabs take too much time to load

$
0
0

Hello colleagues,

 

We have a Production environment in BI4.1 recently updated from SP2 Patch 2 to SP7 Patch 1, composed of 4 nodes, two Intelligence nodes with (RAM 75G each) with CMS server and other two for processing(RAM 65G each), and CMS and Audit DB in Oracle 11g. Both CMS nodes have Tomcat running.

 

I'm not completely sure if after the update came the issue we are currently experiencing.

 

We login to the CMC web page without any issues or spinning concerns, but once we are inside the CMC, we are noticing that when we move to "Servers" or "Users and Groups" tabs take too long to load them completely, Servers tab takes 50 seconds to display all Nodes information(I must mention once is fully loaded, we can move through nodes, metrics and properties options without delay or concerns, the spinning is only occurring every time we move to one of these tabs; for Users and groups is taking 1 minute to populate every time we move there, in our DEV and QA environments take less than 10 sec for each tab. Also we have tried using other Tomcat environment(QA) with the same result, All of the other tabs load correctly without delays.

 

After update we just rebuilt the Paltform Search Index due was not working before update, it was been going slow and due some high usage of the system we just stopped the Platform Search indexing, but the Servers/Users and Groups(Almost 3000 users only) tabs still have the same behavior.

 

Can you consider this is a normal behavior? Have you experienced this before? Where could be the malfunctioning here is case is something wrong?

 

I'll appreciate your responses and feedback.

 

Thanks and regards!

Roy Garcia

Re: Method SingleSignIn.ViewPatientProfile can not be reflected.

$
0
0

Hey Bruce,

 

So using all of your very fine documentation on the subject, I've created a .NET assembly and made it COM callable. However, I'm still missing something likely in my C# code.

 

Here is a very basic example of my issue. Here is the C# code:

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Runtime.Serialization;

using System.ServiceModel;

using System.Text;

 

 

namespace WcfServiceLibrary2

{

  

    public class Service2

    {

 

 

        private String applicationName;

 

 

        public String ApplicationName

        {

            get { return applicationName; }

            set { applicationName = value; }

        }

        public void DoWork()

        {

        }

        public bool DoWork2()

        {

            return true;

        }

 

 

        public int Sum(int a, int b)

        {

            return a + b;

        }

    }

}

 

And here is my PowerScript:

 

lnv_singlesignin = CREATE oleobject

 

 

li_return = lnv_singlesignin.ConnectToNewObject('WcfServiceLibrary2.Service2')

 

 

IF li_return <> 0 THEN

  DESTROY lnv_singlesignin

  RETURN ''

END IF

la_any = lnv_singlesignin.DoWork()

lnv_singlesignin.ApplicationName = 'applicationname'

lb_return = lnv_singlesignin.DoWork2()

 

The ConnectToNewObject returns a 0 - so it is obviously finding the .dll.

 

Only the call to the DoWork() method doesn't result in an error.

 

For both the ApplicationName property and the DoWork2() function I get error accessing external property/function... etc.

 

So the only difference between the DoWork() and the DoWork2() is that the DoWork() returns a VOID.

 

So what am I missing? Any ideas what I should be looking for?

 

Again, thanks in advance for all you've done.

 

Greg

Re: Monthly Sales Employee Analysis

$
0
0

Hi,

 

Please use standard sales analysis report instead of customized query.

 

Thanks

Data in Custom object after patch deployed

$
0
0

Hello Experts,

 

I hope someone can shed some lights for me on the issue I'm having.  I had developed a solution which contains a few custom business objects.  The solution has been deployed in production tenant successfully.  Now I need to make some changes to one of the active on one of custom business object so I created a patch solution. 

 

After I created a patch solution, all data that have been loaded to all custom objects disappear.  It looks to me like the data is still there in the original solution because I can see it in the data source that I created from original solution but I can't see the data in the work center.  Any new data I loaded into the object goes in the original version of the object.

 

I then go ahead and deploy the patch to test tenant hoping it will merge with original but still I don't see the existing data that have been loaded in any of custom objects work center.

 

What am I missing?  Are there any steps that I need to do to activate or merge this?

 

Best,

 

--Jamie


Re: can somebody help me with OCX

$
0
0

Thanks Christ for your answer.

 

 

Do you know where I can found the latest EBF of my current version to download.

 

Thanks again

Re: Unable to connect CAL instance through SAP GUI

$
0
0

Thanks Frank,

 

The problem is i am not even able to connect to instance so cannot even bring the screen on the screen.

 

Thanks

Re: MC88 and MC74

$
0
0

Hi All,

 

I have used Idoc using message LIP076 for MC88 and then call BDC for MC74.

 

Thanks all for your suport.

 

Regards

Trupthi

Re: Integration Interface VU

$
0
0

Hi Lopedius,

 

We are also working on the same scenario and the same error now we came across.

 

We tried with the same options as mentioned above by Agur like installed all features + Roles and also MS Visio C++ 2012 ReDistributable X86 mentioned by you. Still facing same issue.

 

When we checked under C:\SAP\ContactCenter\Logs\CCTEST_Integrations , VU logs , only webclient log file is generated.

16.jpg 

Logs in webclient file are,

 

Requests=0
TotalClients=0
PeakClients=0
PeakUsers=0
PeakAnonynousUsers=0

07:43:26.521 (08940) ALW> Unload v 7.0.9.0

07:45:33.447 (08468) ALW> LogManager: Application [webclient] version [7.0.9.0] in virtual unit [CCTEST_Integrations] in computer [CCTEST] with process id [54e5dd3f-4940-4689-b0d1-5a7872a9585c] since [2016-06-12 07:45:33]

07:45:33.447 (08468) ALW> LogManager: Audit log = [TODO]

07:45:33.447 (08468) ALW> LogManager: Audit event mask = [presence, ]

07:45:33.447 (08468) ALW> LogManager: Global log level = warning

07:45:33.448 (08468) ALW> LogManager: EventCollection log level = inherited

07:45:33.448 (08468) ALW> LogManager: Webclient log level = inherited

07:45:33.448 (08468) ALW> LogManager: BcmApi log level = inherited

07:45:33.448 (08468) ALW> LogManager: CommonLib log level = inherited

07:45:33.448 (08468) ALW> LogManager: ObjectManagement log level = inherited

07:45:33.448 (08468) ALW> LogManager: Security log level = inherited

07:45:33.448 (08468) ALW> LogManager: Database log level = inherited

07:45:33.448 (08468) ALW> LogManager: Network log level = inherited

07:45:33.448 (08468) ALW> LogManager: LibIpcThreading log level = inherited

07:45:33.448 (08468) ALW> LogManager: LibIpc log level = inherited

07:45:33.448 (08468) ALW> Webclient version = 7.0.9.0

07:45:33.448 (08468) ALW> Windows process id = 1100

07:45:33.448 (08468) ALW> Module loaded at address [6A110000]. This method address [6A5CCEF8]

 

--------------------------------

 

In IIS Integration website is showing.

17.jpg

--------------

 

 

We have used same parameter as used by you and also restarted server after installing above prerequisite..

 

What could be the issue ? Please suggest if anything is missing.

 

Regards,

Nikhil

'Contains hidden objects' in Eclipse

$
0
0

Hi experts,

 

I am using Eclipse for HANA XS applications.

 

But, in Eclipse I don't see all artifacts. (already created in the SAP HANA Web-based Development Workbench )

In Eclipse it shows 'contains hidden objects'.

 

How can I make them visible and editable in Eclipse?

 

KR,

 

Andy

Viewing all 8594 articles
Browse latest View live




Latest Images