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

Re: Personal number range starting letter should be one alfabet...

$
0
0

Hi Mohan,

 

As a consultant, you should question the business purpose of the non-numeric character in the personnel number, rather than building something cumbersome to emulate it.

Since the 1980s there isn't really a good reason for this practise sny more (back then it was used to code further info into the personnel number to save a few bytes of storage space).

I am confident: if you discuss why this is supposed to be required, you'll find a better way to deal with that requirement than bending the system and creating a cumbersome process. I've seen close to 50 implementations and almost half of them talked about coding sth into pernr at the start (particularly in the 90s), but eventually none of them needed it.

 

Good luck

Sven


Role (B007) deleted from Position

$
0
0

Hello,

 

We are trying to find the advantages of having the Role assignment Relationship (B007) against a Position being available in the system with an end date of the past, rather than deleting it totally from PO13.

 

So, we have 2 options:

1. When a position no longer needs a particular Role, either we delete it from PO13, then it doesn't show up when the selection criteria is ALL

2. When a position no longer needs a particular Role, we delimit it to a date, then it will show up with the selection criteria ALL

 

What are the advantages/pros of option 2 over option 1?

Re: row level security on multiple fields with * for all

$
0
0

Hi,

 

Suppose your account group universe is limited to the following set: { 1, 2, 3, 4, 5 }

 

A solution would be to take advantage of the SQL's IN operator in your universe's join condition(s), so that BOBJ generates JOIN or WHERE clauses like:

 

-- SELECT ... FROM ...

... WHERE table.account_group IN ( account )

 

Here "account" is the 3rd column of your account security table.

 

If you change the asterisk for a comma separated list of all your possible accounts you will achieve the desired result for people allowed to see all the financial accounts:

 

 

UsernameEntitycode
Account
JVDDBRUZT1,2,3,4,5
JVDDCPHZT1,2,3,4,5
BPOBRUZT3
BPOMANZQ3
PBKCPHZT1,2,3,4,5
PBKMANZQ1,2,3,4,5
PBKBRUZT1,2,3,4,5
FSCCPHZT

1

 

For example if user is BPO, built SQL clause will look like

 

-- (something)

... WHERE account IN ( 3 )

 

If user is JVDD built SQL clause will be

 

-- (something)

... WHERE account IN ( 1,2,3,4,5 )


This would be a straightforward to allow two or three account groups to be assigned to a user.

 

I hope this approach leads you to the solution

 

Best regards,

Fernando

Re: CJ20N Userfield USR00 inactive

$
0
0

Ten this is not the route. You need to explore implicit enhancement points of the program SAPLCNPB_M (CJ20N). OR find  suitable exits/ BAdi. Study the Exits from CNEX0001 to CNEX0008 , (As the name indicates CNEX0001looks suitable). In fact you should study all the exits starting with prefix CNEX.


Also look at BAdis:

WORKBREAKDOWN_UPDATE.

PROJECTDEF_UPDATE


 

Good luck

KJogeswaraRao

No HTTP(S) service active error in SE80 View Designer

$
0
0

Hiiii Folks ,

              I am facing the problem,while developing any webdynpro program in se80->view->layout am getting the error as "No HTTP(S) service active on server ecc6".. Please help me to sort out this problem .

Deleting a particular row based on conditional

$
0
0

Hello Experts,

 

I'll like to take advantage of the known expertise that all of you have on this topic to ask a question regarding data-handling in Crystal Reports.

 

Currently, I have an Account table, but there is one condition that I need to validate in order to complete the report itself.

 

Please check the following table as an example.

 

nbr(*)Account IDGroup CategoryAccount AreaAmount
110001General70102300
210002Costs80905000
310003General1100
410004Costs70109000
510001Sales2300
610005Sales80901050
710001Sales8090540
810001General2300

 

*the nbr(*) is just as reference to identify every line.

 

Based on that table, check the Account ID10001, the idea of the condition is that it validates per row if the Account Area is set, then take the corresponding Account ID and remove or hide the rows where the Account Area is blank (So they won't be valid in grouping or summarizes)

 

nbr(*)Account IDGroup CategoryAccount AreaAmount
110001General70102300
210002Costs80905000
310003General1100
410004Costs70109000
510001Sales2300
610005Sales80901050
710001Sales8090540
810001General2300

 

So the result will be the following:

 

nbr(*)Account IDGroup CategoryAccount AreaAmount
110001General70102300
210002Costs80905000
310003General1100
410004Costs70109000
610005Sales80901050
710001Sales8090540

 

Check that the rows 5 and 8 are no longer in the table, then with that table it's only matter for me to group by Category and make some other validations but that's the one that is getting me crazy.

 

I'll really appreciate if someone could take a look and give me some advices.

 

Best regards and thanks in advance,

 

Melvin

Re: SAP EM - Events from Carriers that are Expected but with bad Locations

$
0
0

Vishnu,

Again thanks for the response. I'm aware that we could add the parameter in the Event Data logic but shouldn't this be going through the preprocessing logic? Is there any reason it may not be going through the preprocessing logic? When you send events through Event Data is preprocessing logic executed?

 

The Error:

DBSQL_DUPLICATE_KEY_ERROR (CX_SY_OPEN_SQL_DB) within program /SAPTRX/SAPLEH_FUNCS.

ispcchart setting usl,lsl and cl using web scripting

$
0
0

Hi, I am trying to set the usl and lsl using below code

 

chart_c1c0.getChartTemplateObject().setProperty("LSL",990);

  chart_c1c0.getChartTemplateObject().setProperty("USL",1010);

 

It is not working. any clue ?

 

Thanks

Hari


Re: Deleting a particular row based on conditional

$
0
0

Do you want to remove all rows where there is no account area, or, as in your example, the first one will appear?

 

If you want to remove all of them, then use the Select Expert and include something like this in the selection formula:

 

not IsNull({MyTable.AccountArea})  <--Use your actual table and field name here.

 

This will keep any records that don't have an account area from even being pulled from the database, so you won't have to do anything special with them in the report.

 

-Dell

Re: CK40N Marking Issue

$
0
0

Dear Ajay,

 

Thanks, 1 company code only can have a costing variant that's using 1 standard cost estimate costing type.

Then i have to change my configuration.

 

Thanks again.

Sean

Re: Auto adjustment of table coloumn in Webdynpro

$
0
0

Dear Karthik,

 

Unfortunately 'Table column auto-adjustment' is with the W3C browser rendering 'standards mode' not possible. For further informations please read note 2216132.

 

Best regards,

Gabor

Re: Read certificates from Smartcard

Re: Assign condition type xxxx in CO-PA

$
0
0

Bonjour Patrick,

 

If you say it has worked before then I’d suggest to find similar order+billing doc that went through successfully and compare conditions. May be compare interface data of both successful and erroneous billing doc using program SAPFACC0. Choose the line which tries to post revenues to your GL 411000 and compare field values against good example which posted to the same GL before.

 

Yet PB00 may be tricky. And it could be both MM and SD related (as it is in standard SAP). Besides 3kei for SD it could be assigned in 3keim for MM. But before doing such a move I’d carefully check blocked order as described above.

 

Bonne chance dans vos recherches et bonne journée.

  Anton

Re: Crystal Report 8.5 to CR 2013

Re: System not populating Interaction Record Number in Auto Acknowledgement

$
0
0

Hi Ashish,

We tried to check with SAP, but looks like there is no straight solution to this. As a work around in the Service manager Profile assigned to the Email address, we have defined our own service. This service is has our own class that links the interaction record that was created and populates it in the mail form that is used to send the auto acknowledgement.


Re: Run installer error while doing homogenous system copy

$
0
0

Hi Sri,

 

Please check the environment variables of user sidadm. Also please attach sapinst_dev.log to this discussion.

 

best regards,
James

Re: Regarding RBE

$
0
0

Hello Ambichan,

 

SAP fixed the issue of report painter programs with OSS Note 151748. This note is already included in SAP releases higher than 4.6C.

SAP however didn't fix the issue of SAP Query related programs, e.g. if users execute queries via SQ01 or SQVI the Query usage is not capture but the usage of the executed transaction.

 

The issue can be fixed if you include SQ01 and SQVI as described in OSS Note 151748 if your users are in fact using those transaction for SAP queries. The correction will not change any historic usage statistics though, e.g. it will only work moving forward.

If your SAP queries are included in a report tree or the SAP menu you typically will see y transactions used to execute the queries.

 

RBE Plus can show the queries behind those y transactions.

 

Best Regards,

 

Heiko

Re: Agentry client crashes with java.lang.OutOfMemoryError: java.lang.OutOfMemoryError

$
0
0

Hi Sizo,

 

In the release notes of SMP SDK 3.0 SP09 PL05 it has a fix for

 

"Android client crashing with java.lang.OutOfMemoryError"

 

Upgrading to the latest client may help with your issue if you haven't already solved it.

 

Regards,

Stephen

Re: Create External SAP JAM users via SuccessFactors Platform

$
0
0

Hi Christian,

 

The issue I have is that if I enter an external email address to invite someone to a private group, I receive an error pop-up with the text "Unknown e-mail address". I then am unable to proceed with issuing the invitation.

unknown email.jpg

I reviewed the group settings to see if there was a setting to allow for external invitations, however I could not find anything.

 

Regards,

Luke

Re: Changes to CSS file in my UI5 widgets do not apply in the HCPortal

$
0
0

Hello Karthik and thank you for your attention.

 

Unfortunately yes that is exactly I did. I recreated from scratch and copied-paste my code.

 

But this should not happen. It is a big issue with the HANA Cloud Portal trial I consider and that does not drive me to buy a productive version. Neither want to advise customer to buy it. I think I lost two complete days trying to figure out these kind of issues.

 

Is there any possibility to manage ourselves what is going on in the server with a Productive version?

 

I return to debug.

 

Thank you for your help Katrik, this is very appreciated.

Best regards.

Jacques-Antoine Ollier

Viewing all 8713 articles
Browse latest View live




Latest Images