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

Re: PCR for Extra payment

$
0
0

oK..

 

create a custom pcr in this case

 

 

 

Say ...ZT13 Personnel Calculation Rule  ZT13

 

 

 

    3

      /3E1

        AMT?0   Comparison

 

          *

            ADDWT *    OT   Output table

 

          >

            ADDWT /3E1 OT   Output table

            ELIMI *    Elim.time period I

            AMT=1000    Set

            ADDWT 9200 OT   Output table

 

 

Then you can add this pcr under Factoring and storage...

 

Finally configure Absence Valuation as I have mentioned earlier to get an effect of absence,,

 

 

Regards,

Veeram


Re: table control - Scroll down

$
0
0

Thanks Glen for the quick reply. In this way everytime we shoudl press pagedown aft entering each record.

The following is the code which I have tried. In this I have created recording and then tried.

 

   IF lv_count = 11.
      PERFORM bdc_dynpro      USING 'SAPLIBOF' '0200'.
      PERFORM bdc_field       USING 'BDC_OKCODE' '/00'.
      PERFORM bdc_field       USING 'RIBIB-EXTID' lv_descr.
      PERFORM bdc_field       USING 'RIBIB-DESCR' lv_descr.
      PERFORM bdc_field       USING 'BDC_CURSOR' 'RIBOF-REVLV'.
      PERFORM bdc_field       USING 'RIBOF-REVLV' p_revlv.
      PERFORM bdc_field       USING 'RIBOF-UNIT' 'EA'.
      PERFORM bdc_field       USING 'BDC_CURSOR' 'IB0002-MATNR(01)'.
      PERFORM bdc_field       USING 'BDC_SUBSCR' 'SAPLIBOFMA   0600PUSHBUTTONS'.
      lv_count = 1.


Re: Sap Table Structure download

$
0
0

use DD03VT. This will give you complete details to download

Re: Crystal Report with VB.NET  2012

$
0
0

Many Many thanks Ludek,

 

As i had succeeded at end.

 

All the mess was due to my system was loaded with many software.

Sap Crystal Reports,Sap BOBI 4.0 , SAP GUI so the mess was just for that but

i did not uninstall any of my softwares still done nicely.

Your solution was perfect

If you do not need managed reporting (e.g.; reports will be loaded from path not via CID from BI), you do not need scheduling and administrative SDKs, then all you need is VS 2010 or higher and SAP Crystal Reports, Developer Version for Visual Studio .NET (CRVS). On the development computer, use the "Install exe", not the MSI as the MSI will not integrate fully into VS.

Re: replace all occurrences of blanks only if it is preceded by space in string

$
0
0

Regular expression can be used here.

Run this snippet.

  1. DATA: str     TYPE char100 VALUE '10001:M :1001:          :NN',
  2.       results TYPE match_result_tab,
  3.       result  TYPE match_result,
  4.       off     TYPE i,
  5.       len     TYPE i.
  6. FIND ALL OCCURRENCES OF REGEX '([:,]) +' IN str RESULTS results.
  7. LOOP AT results INTO result.
  8.   off = result-offset.
  9.   len = result-length.
  10.   TRANSLATE str+off(len) USING ' _'.
  11. ENDLOOP.
  12. WRITE str.

Here I have chosen 2 delimiters and placed inside [] . Spaces followed by them will be replaced by underscore. You can modify the list of delimiters.

After finding all the valid patterns or substrings, translate statement is used for replacing spaces.

For more information about regular expressions, see keyword documentation and run program DEMO_REGEX_TOY.

 

/.

Re: Grant Analytic Privileges

$
0
0

i Just got It

 

CALL GRANT_ACTIVATED_ANALYTICAL_PRIVILEGE ('"Test/AP_TEST"','TEST');

 

Syntax:

 

CALL GRANT_ACTIVATED_ANALYTICAL_PRIVILEGE (' "analytic privilege" ','user/role');

Re: HR infotype log in PCL4 and overall performance

$
0
0

Thank you for the reply. Is there a way to move the message to the HCM place, or do I need to create a new one?

 

I think, like you, that some additional fields shouldn't affect performance. We're thinking about adding a few infotypes that are not logged today, but still I think it would be OK.

Re: BPMon: Send BPMon alerts to third party tool through SNMP traps

$
0
0

Hi Ash

 

 

 

Pleasee see the help guides on raise auto alerts based on CCMS and MTE

 

 

 

http://help.sap.com/saphelp_nw04s/helpdata/en/a9/ef1e109d1af946ae5ab624f972c6fa/content.htm

 

 

http://help.sap.com/saphelp_nw04s/helpdata/en/43/ee6df92cf4eb41b11d15cc8e3a368a/frameset.htm

 

 

http://help.sap.com/saphelp_nw04s/helpdata/en/66/f9a9b903a611d3b44f006094b910d9/content.htm

 

 

 

As Keiji has said, the functionality that you are looking for is part of teh MAI infrastructure that is available is SP12

 

 

 

Best Regards

 

 

 

Mark


How to solve problem with audit in state 'Wait for result audit:xxxxxx' ?

$
0
0

Hello Guru,

I have IDM 7.2 SP9 on Oracle 11.2.0.4.

 

The problem is - some users have provisioning status=20 with message "Wait for result audit:xxxxxxx" in table MXP_AUDIT.

And provisioning doesn't start when I try to modify such accounts via WEB-interface with 'Modify' task. Only new record with provstatus=0 is added to table MXP_AUDIT and nothing else has happenned.

 

mxp_audit.jpg

If I select information about audit with provstatus=0 from table mxp_ext_audit, I get null result:

empty.jpg

I tried to use recommendation from topic SAP IDM: Provisioning is stuck (yet again) - My checklist

 

update mxp_audit set provstatus=1100 where auditid = <auditid>

 

But nothing changed.

 

 

I have 367 records with status '20' and message 'Wait for audit'. And I can't change these item, because of such stuck.

 

Could you please help me to solve this problem?

 

Thanks in advance!

Natalia.

Re: replace all occurrences of blanks only if it is preceded by space in string

$
0
0

Hello Sanjana,

Here is a sample of my suggestion.

 

 

Data: string1a(20) type C,

         string1b(20) type c,

         string1c(20) type c,

         string1d(20) type c.

 

 

Data: len1    type i,

         offset1 type i.

 

 

 

 

 

 

start-of-selection.

 

 

 

 

 

split at space string1 into string1a string1b string1c string1d.

 

*-->get the length of the first split

 

 

 

 

 

len1 = strlen(string1a)

 

*--> we interested in the last character...so get the offset

 

 

 

offset1 = len1 - 1.

 

 

 

 

*-->test to see if the last character is a delimiter.

 

 

 

if string1+offset1(1) eq ':'

 

 

 

concatenate string1a string1b into string1 separate by '_'.

 

 

 

else.

 

 

 

concatenate string1a string1b into string1.

 

 

 

endif.

 

 

 

 

 

*--> do the same for the other sub-strings...of course test to see if they are not initial.

 

 

Thank you,

John

<removed by moderator> if helpful. Or ask if you need more help

 

Message was edited by: Manish Kumar

Re: Tax on Monetary & Non-Monetary Perquisites (Payroll-India)

$
0
0

can you come up with numbers ? and little clear to better understanding.

Re: Cost Center 88405 is not Supported in all Periods

$
0
0

Hi Everyone,

 

Thank you Jandoval, the cost center has been extended to accept the whole of planning period.

Cost center was not deleted nor blocked.

I did extend this date per the advise Above, but now it's a different error as shown in the screenshot below. Am working on the new error after i have extended the validity period for this cost center.

Cost_Center_Untitled.jpg

 

Thank you All for the contribution.

 

Regards

John.

Re: Error in refresh structure in Universe Designer

$
0
0

Hi Can,

 

I was unable to resolve this issue by any of the suggested solution. I did create a new universe to include a single object. 

 

One of my collegue also suggested me that it was because of large number of objects involved in query. But I cannot reduce the number of objects due to requirement.

 

-Mandar

Re: Why Actual Transaction number is not updated in PoSDM targets but instead Transaction Index

$
0
0

Hi Aram,

 

Thanks for the inputs, worthy to add the points.

 

Thanks and Regards,

Ramesh D

Re: FM "FTP_COMMAND" generates ftptmpfile*-Files

$
0
0

It's weird... I used this FM some weeks ago but I haven't the same problem.

 

In my development, I used FTP_R3_TO_SERVER to transfer an internal table converted into CSV format to FTP, and FTP_COMMAND to confirm if the file was copied.

 

Did you checked if your command variable from FTP_COMMAND isn't wrong?


Re: How to give condition on string of document type

$
0
0

In your table field ZDOCTYPE you do not have the entry NB7 in row 3 so it will not be selected. The entry in row 3 is NB2,NB4,NB7......

If you want to select row 3 then you need to use WHERE ZDOCTYPE LIKE %NB7%.

Re: "Invalid CMS Connection" Error during DS 4.2 SP2 Installation

$
0
0

Hi Everybody,

 

Thanks for your inputs and time - this issue was resolved through re-installation of EIM and APS on BOBI CMS Host.

 

Thanks,

Regards,

- Ishan

Re: LWF configuration payroll india.

$
0
0

Plant employee's are getting LWF and Head office employee's is not getting LWF ?

Re: Silent AD login doesn't work in 4.1 SP2

$
0
0

Hi Jose,

 

Just found out the trace for Launch Pad and got this

 

FILE_TYPE:DAAA96DE-B0FB-4c6e-AF7B-A445F5BF9BE2

ENCODING:UTF-8

RECORD_SEPARATOR:30

COLUMN_SEPARATOR:124

ESC_CHARACTER:27

COLUMNS:Location|Guid|Time|Tzone|Trace|Log|Importance|Severity|Exception|DeviceName|ProcessID|ThreadID|ThreadName|ScopeTag|MajorTick|MinorTick|MajorDepth|MinorDepth|RootName|RootID|CallerName|CallerID|CalleeName|CalleeID|ActionID|DSRRootContextID|DSRTransaction|DSRConnection|DSRCounter|User|ArchitectComponent|DeveloperComponent|Administrator|Unit|CSNComponent|Text

SEVERITY_MAP: |None| |Success|W|Warning|E|Error|A|Assertion

HEADER_END

|5D6183E7385740CDB48C2AB5CF16D31F1|2014 08 19 11:24:19.914|+0200|Error| |==|E| |BIlaunchpad| 4396|  41|http-bio-8080-exec-8| |53|0|1|0|BIlaunchpad.WebApp|DEWDFTV01870:4396:41.18:1|BIlaunchpad.WebApp|DEWDFTV01870:4396:41.18:1|BIPSDK.SessionMgr:logonEx|DEWDFTV01870:4396:41.18:10|CsOR8qwtDkjwirg_0_dKPQc10|||||||||com.crystaldecisions.sdk.plugin.authentication.ldap.internal.SecWinADAuthentication||Authentication failed. Generic error (description in e-text) (60)

|5D6183E7385740CDB48C2AB5CF16D31F2|2014 08 19 11:24:25.735|+0200|Error| |==|E| |BIlaunchpad| 4396|  41|http-bio-8080-exec-8| |19|0|1|0|BIlaunchpad.WebApp|DEWDFTV01870:4396:41.19:1|BIlaunchpad.WebApp|DEWDFTV01870:4396:41.19:1|BIPSDK.SessionMgr:logonEx|DEWDFTV01870:4396:41.19:10|CsOR8qwtDkjwirg_0_dKPQc11|||||||||com.crystaldecisions.sdk.plugin.authentication.ldap.internal.SecWinADAuthentication||Authentication failed. Pre-authentication information was invalid (24)

|01075E6CF21E464CBF627071085CACB91|2014 08 19 13:05:42.859|+0200|Error| |==|E| |BIlaunchpad| 1476|  40|http-bio-8080-exec-4| |53|0|1|0|BIlaunchpad.WebApp|DEWDFTV01870:1476:40.51:1|BIlaunchpad.WebApp|DEWDFTV01870:1476:40.51:1|BIPSDK.SessionMgr:logonEx|DEWDFTV01870:1476:40.51:10|ChYugA_Y60nzjqQnE2YJuao31|||||||||com.crystaldecisions.sdk.plugin.authentication.ldap.internal.SecWinADAuthentication||Authentication failed. Generic error (description in e-text) (60)

 

Not sure why this this throwing pre-authentication information was invalid

 

Thanks,

Skugan V

 

Re: Using Projects to Control Transports

$
0
0

Dear Deepak,

You knowas wellas Ican manage it, that certainusers can only seeoneproject. For example,when creating aa transport request?

 

Greetings

Heike Cordes

Viewing all 8851 articles
Browse latest View live




Latest Images