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

Re: Error on running CK11N

$
0
0

Hi

 

1. Cost center xxxxxxx, activity type xxxxxxx: Actvty price differs fr. cost comp splt

 

This will be an warning I believe. If yes, no worries.

 

2. Cost element xxxxxx is not assigned to a cost component

 

I suggest to change the cost component structure as long as the system is determining correct cost element/GL. Better if you create a separate cost component for such cost elements, and in next year beginning adjust these cost elements to the relevant cost component. This way in current year your figures will remain comparable with the previous periods. However CCS should not be changed frequently  but if at all required you may change it.

 

Regards

 

Rajneesh Saxena


Re: Query regarding SAP MM

$
0
0

As already stated by other members, always advisable with out quitting your current job trying for other opportunities, because even though you did certification there is no job Guarantee.

 

In your case it is NOT at all advisable because you have very good chance shifting your profile from end user to consultant role with your current package,have seen practically with in my organization as well as outside also.  where as if your are quitting your current job you may get the job but you have to work for less salary to what your getting currently( assuming that you are getting approximately 5lac INR PA) it is again depends up on your knowledge it may vary.

 

Better try do certification for MM and pass it then try with in your company first, if you don't find the job in your organization always you can try outside. All the best.

 

Thanks,

Srinu.

Re: Sales Order Confirmation on Order Release

$
0
0

Use status profile in sales order. Create status like new, approved, etc.

Set your output on status approved as per your requirement. you may use requirement for this..

 

Once order will be created keep by default status new. so it means your email will be determined but not triggered. Once user change order status to approve system will release email.

 

Regards

Re: MPN

$
0
0

Dear Abdul,

 

Create material with Material type HERB for base

and MPN as FFFC

 

Regards,

Ravi

Re: more than 50 char email subject

$
0
0

Hi,

 

http://scn.sap.com/people/ravi%4002 is right.

 

Code fragment:

 

PARAMETERS: p_sbjct TYPE so_obj_des .

 

DATA: ob_document_bcs TYPE REF TO cl_document_bcs.

DATA: ob_bcs TYPE REF TO cl_bcs.

 

  CALL METHOD cl_document_bcs=>create_document
    EXPORTING
      i_type    = 'HTM'
      i_subject = p_sbjct
      i_text    = it_soli
    RECEIVING
      result    = ob_document_bcs.

 

* Generate a subject that up to 255 byte long
* Not visible in sost .


  DATA: ip_subject TYPE string .

 

  ip_subject = p_sbjct .

 

  DATA: counter TYPE n LENGTH 2 .

  DO 50 TIMES .
    counter = sy-index .
    CONCATENATE ip_subject ' long message:' counter  INTO ip_subject RESPECTING BLANKS .


  ENDDO .

 

  CALL METHOD ob_bcs->set_message_subject
    EXPORTING
      ip_subject = ip_subject.
     
Result(OutLook):

 

screenshot_01.png

 

Regards.

Re: MIME type of File

$
0
0

hi deeplak ,

 

 

use this code to determine

 

String mimeType =Magic.getMagicMatch(file,false).getMimeType();

 

for this  you have to use the jmime magic libraries which is available in the below link .

 

http://sourceforge.net/projects/jmimemagic/

 

if you dont want to user external jar you can use standard java

FileinputStream  fileinptstrm = null ;

fileinptstrm =newBufferedInputStream(newFileInputStream(fileName));
 
String mimeType =URLConnection.guessContentTypeFromStream(fileinptstrm);

Regards

Govardan Raj

Re: edit Claim in Expert mode - No button "Maintain Subclaims" (FS-CM)

$
0
0

p.s. it was screenshot from SAP course FS335

 

This one from our system and there is no button "Maintain Subclaims", all main customizing done, but anyway we missed something about it

Снимок экрана 2014-10-27 в 9.58.07.png

Screens from customizing

Internal claim types with subclaims

Снимок экрана 2014-10-27 в 10.01.15.png

Снимок экрана 2014-10-27 в 10.01.39.png

Screen sequence expert mode for header

Снимок экрана 2014-10-27 в 10.02.59.png

Coverages for policy product

Снимок экрана 2014-10-27 в 10.04.05.png

Re: Urgent Issue in PR Release Strategy- Not getting released Problem

$
0
0

Thanks for your reply Paul but still the issue persist !


Re: How to stop PO output ZNEU on deletion

$
0
0

Hi Jurgen,

 

I made the story a bit small.

 

Here is how it goes.

 

Our legacy system posts a PO. through a sync web interface.

PO is created with all required messages, the PO may or may not be in released status.

Lets say the PO is in blocked status, now the user deleted the PO in legacy system. immediately we trigger a change marking deletion indicator on all line items.

 

Now at this point the PO output "ZNEU" is still being generated with just header no products as an email. Well at the same time the approver may delete it entirely because he is a user and have access to do so technically. 

 

As per the above recommendation from Bijay, I did verified the code there is no stopping based on deletion indicator, that might be an easy fix.

 

But again as I claim is this the only way ?

 

Thanks,

Sai

Re: Urgent Issue in PR Release Strategy- Not getting released Problem

Re: Do fresher's get job after doing SAP Certification course ??

$
0
0

Good discussion between Brendon and Colleen!

 

From my time on SCN, I observe that India is one of those countries. It has built a massive SAP outsourcing industry and the competition over there is fierce. I do not believe it's lack of enthusiasm as the reason for many of the job seekers unable to obtain employment based on their participation

 

The key thing, like any beginner out there is you need to find a way to market yourself and seek out the opportunities.

 

Colleen,

 

As you say, where the competition is fierce...the enthusiasm level should also be "unreasonably" high for standing out of the crowd.

 

Enthusiasm has to manifest in understanding of your module in a more mature way, even though you are less / not experienced.

 

TW

Re: Date type specification-dynamic action

Call by value and call by reference with respect to subroutine

$
0
0

Hi all,

 

 

I dint understand how to achieve call bye value and call bye reference  with subroutines. Please help me by giving the answer with examples.

 

 

Thanks and regards

 

Bijesh K K

Displaying Purchase Requisition attachments in SAPUI5 XML View - Help needed

$
0
0

Hi,

 

I have a requirement for displaying the list of PR attachments (for subsequent download) in a SAPUI5 XML View in the section mentioned "List of Attachments" -

 

Pic2-1.jpg

I have already created a function module (RFC) which is giving the list of attachments when PR number is entered as follows -

 

Import parameter

IV_BANFN   type BANFN

 

Export Parameter

Table

ET_XSTRING  Type ZTT_XSTRING (Table Type with following structure)

 

Structure of ZTT_XSTRING Table type

ZXSTRINGTypesSLDSTRING
FILETYPETypesSWR_FILETYPE
FILENAMETypesSWR_FILENAME
FILE_EXTENSIONTypesSWR_FILEEXT

 

The following is the output -

 

Pic2-2.jpg

 

The following is the content of the table ET_XSTRING -

Pic2-3.jpg

 

Pic2-4.jpg

 

Pic2-5.jpg

 

How it is possible for me to display these 3 attachment files in UI5 XML screen shown in top for download?

 

If need anymore details, I can post the same.

 

Awaiting your kind help ....

 

Regards,

 

Subhabaha Pal

code page / coding problem during passing text from GW to UI5 app

$
0
0

Hello,

 

The problem is when i am passing text from GW to UI5 app.

 

“Prüflos” is written as“Pr#flos”


Ui5 app coding is Utf-8

Sap internal coding i dont know now.


Any idea how to conwert this  ?



Thank from mountains

Lucas


Re: Problem installing SMP EBF 22701 3.0 SP03

$
0
0

Hello,

 

 

I have exactly the same error message. It works when I'm installing it on English version of Windows Server 2008 but when I'm trying to do it on Polish Windows 7 X64 I'm getting error like

 

(Oct 28, 2014 7:10:11 PM), , com.installshield.smpserver.event.dialog.swing.PanelServiceAccountInfo, err, ERROR: Failed to create Windows service SAPSMPTestUserLogonService to try to set service LOGON permission for smpServiceUser user account.

 

 

I've dissabled UAC by:

 

C:\Windows\System32\cmd.exe
/k %windir%\System32\reg.exe ADD
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t
REG_DWORD /d 0 /f

added specific policies for user smpServiceUser in gpedit.msc, all started on administrator account.

 

 

How can I solve that issue?

 

Regards

Marcin

Re: Unable to install SP7 on Crystal Reports 2008 (12.0.0.683)

$
0
0

NP and apologies for this. I am told the downloads issue will be resolved early in 2015...

 

 

- Ludek

Re: Error 'HTTP status code 400 Bad Request' while executing HTTP request (calling method 'get_status')

Re: Possible options of applying different restrictions on reports based on same info-provider.

$
0
0

Hello Mahesh,

 

Thanks for your prompt response.

However, my issue is not around handling different inputs in same AAO.

 

It's around restricting the access to specific profit center for one report with company code as *(ALL) values in analysis authorization, while the same user is having access to other report with specific company code restriction & profit center will be *(ALL) in the corresponding analysis authorization. Puzzle is how to achieve the applicable restrictions when both reports are based on same default SAP info-provider & given to same user ?

 

Let me know, if you need more details.

Re: Error 'HTTP status code 400 Bad Request' while executing HTTP request (calling method 'get_status')

$
0
0

I see that cache status is up to date? if you refer to your previous screenshots it has got some inconsistencies.

 

You can try making a dummy change in ID and see if the cache get's updated.

Viewing all 8851 articles
Browse latest View live




Latest Images