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

Re: role of sap crm techno-functional consultant

0
0

Hello,

 

80/20 rule .... 80% functional and 20% technical.  Though what I have seen over the last few months in the SAP CRM world is a move to "technical".  I personally feel SAP is doing very well to answer most of the standard CRM functions in CRM7.2 and this has lead to a move to technically enhance CRM by many consultants, especially through things like AET.

 

Regards

 

 

Waza


Re: not all of intenal table rows inserted to ztable

0
0

I updated my code using filed-symbols and i found that the following AIDs did not inserted to database

0000000024 0000000039 0000000055 0000000065 0000000066 0000000068 0000000070 0000000071 0000000081 0000000092 0000000099 0000000100 0000000102 0000000105 0000000106 0000000107 0000000108

and other 93  rows inserted successfully.

how can i detect the reason whey those numbers of AIDs not inserted.

TYPES: ITT_ZADRFINAL TYPE  STANDARD TABLE OF ZADR .
 DATA: IT_ZADRFINAL TYPE   ITT_ZADRFINAL .
 FIELD-SYMBOLS : <WA_ZADRFINAL> like  LINE OF   IT_ZADRFINAL .
 DATA: IT_ZADRFINAL2 TYPE  STANDARD TABLE OF ZADR ,       WA_ZADRFINAL2 like LINE OF IT_ZADRFINAL2.
 SORT  IT_ADRC BY  TEL_NUMBER DESCENDING.
 DATA: COUNTER TYPE I VALUE 1.   LOOP AT IT_ADRC INTO WA_ADRC.  ON CHANGE OF WA_ADRC-TEL_NUMBER.
 APPEND INITIAL LINE TO IT_ZADRFINAL ASSIGNING <WA_ZADRFINAL>.          <WA_ZADRFINAL>-AID = COUNTER .          <WA_ZADRFINAL>-FIRSTNAME = WA_ADRC-NAME1.          <WA_ZADRFINAL>-SECONDNAME = WA_ADRC-NAME2.          <WA_ZADRFINAL>-NATIONALID ="".          <WA_ZADRFINAL>-STREET = WA_ADRC-STREET.          <WA_ZADRFINAL>-HOUSENUMBER = WA_ADRC-HOUSE_NUM1.          <WA_ZADRFINAL>-REGION = WA_ADRC-REGION.          <WA_ZADRFINAL>-POSTALCODE = WA_ADRC-POST_CODE1.          <WA_ZADRFINAL>-CITY = WA_ADRC-CITY1.          <WA_ZADRFINAL>-TELEPHONE = WA_ADRC-TEL_NUMBER.          READ TABLE IT_ADR2 INTO WA_ADR2  with key  ADDRNUMBER =  WA_ADRC-ADDRNUMBER   R3_USER = '3'." TO GET MOBILE NUMBER          <WA_ZADRFINAL>-MOBILE = WA_ADR2-TEL_NUMBER.          <WA_ZADRFINAL>-FAX = WA_ADRC-FAX_NUMBER.          <WA_ZADRFINAL>-FUNLOC = ''.          <WA_ZADRFINAL>-FUNLOCDESC = '' .          <wA_ZADRFINAL>-CREATED = '' .          <WA_ZADRFINAL>-CREATED ='' .
 COUNTER = COUNTER + 1.
 CLEAR :  WA_ADR2.
 *CLEAR : WA_ADRC, WA_ADR2.
 ENDON.        ENDLOOP.
 SORT IT_ZADRFINAL by AID ASCENDING.
 DELETE ADJACENT DUPLICATES FROM  IT_ZADRFINAL COMPARING AID .
 LOOP AT IT_ZADRFINAL ASSIGNING <WA_ZADRFINAL>.
 INSERT  ZADR FROM  <WA_ZADRFINAL>.
 IF SY-SUBRC <> 0.   WRITE : <WA_ZADRFINAL>-AID.   ENDIF.
 ENDLOOP.

Re: SAP Screen Personas Error - The session has timed out - please log in again.

0
0

Thanks Sushant,

 

I implemented SAP Note No. 1940635 and restarted the server...

It is working now!

Thanks,

 

Guy

Re: Employee Profile blank in UI5

0
0

The issue resolved.

Re: Employee Profile blank in UI5

0
0

my contact no: 9912046374

IFRS Vs IAS

0
0

Hi Experts,

Can any one please explain me in details how is IFRS (International Financial Reporting standards) different from IAS (International Accounting Standard)?

 

Thanks in Advance

Re: SAP BI/BW Certification (C_TBW45_70)

Re: Urjent!! disp+work.EXE not working.

0
0

Either you start the active directory

You can try to set these parameters that should allow non SSO/SNC access.

snc/accept_insecure_cpic  =1

snc/accept_insecure_gui   = 1

snc/accept_insecure_r3int_rfc =1

snc/accept_insecure_rfc  = 1

snc/permit_insecure_start = 1

or you deactivate SSO by setting

snc/enable = 0

 

Regards


SET missed in report output - Report painter

0
0

Hi all,

 

I have an issue with report developed using Report painter.  One of the parameter in the selection screen (General data selection) is business area.  I use a SET as a parameter while executing the report.  The set has multiple sets within it.  During execution, the variation explodes the business area sets as expected, except for one.  However, when I give the missing set separately in the selection screen, it works. This means that I do not have auth issue.  Can you please help me in identifying why only one set when exploded is missed in the report output?

 

Thanks.

Regards,

Sridevi

Re: Re-Using FM already created in ABAP on WDA

0
0

I agree with Kiran that you can't do a CALL SCREEN from a WDA application. This pretty much defeats the whole purpose of WDA development.

 

Ideally, you should re-design your application to use WDA concepts and split the business logic from the UI logic (MVC design pattern).

 

Now, having said that, it could take you a very long time to re-design all of the good work you did in traditional ABAP. So, it is possible to call an ITS version of the ABAP transaction. To do so, you need to create an Object-Based Navigatin (OBN) reference to the ITS transaction. You can call OBN from within WDA methods. The OBN reference then triggers the corresponding object which could be a transaction, another WDA, etc. Keep in mind though that OBN will be asynchronous, meaning that the OBN target will be opened in a new window.

Re: How to give condition >2000000 -

0
0

Hi,

 

 

Please share the error description/message number.

Also check In Value assignement: Select Multiple values and Check Interval values allowed and Currency maintained.

 

reg,

Bhg

Problem in Creating an ard

0
0

Hi all,

 

I have created a addon for my program and when i build my program with release x86 , the files are not creating into bin\x86\release, its creating into a new folder named obj\x86\release.


What is the method to generate the files into the bin folder and not in the obj folder???

 

And so i am finding it difficult which of these to copy and finally make an exe file and give it to the client.

 

Help me solving this issue.

Regards,

Janani

Re: how to done system integration test in PI?

0
0

Hi Ravi,

 

Would suggest reading this blog below if you are new at PI. Its an excellent read.

http://scn.sap.com/docs/DOC-41766

 

Now to answer your question - If you are trying to test your mapping it would be on the ESR (Enterprise Service Builder)

1. Open up the Message Mapping.

2. You will need an xml to test the mapping. You can create your own xml in message mapping under test or if you tested the interface by running it from the source i would suggest that you go and get the xml under sxi_monitor. Copy the xml and paste it into the message mapping under test.

3. Now you have data to test the interface

4. You can go onto each field and right click and select display queue. This will run the data into the mapping for that specific field. If there is a problem it will display a dialog box.

5. After fixing all the issues in the mapping. Just save and activate.

6. Then do end-to-end test again.

 

If you need any additional information just let me know.

 

Regards,

 

Jannus Botha

BDC Session Processed but no transactions processed

0
0

Hi

 

We have an ABAP which generates a number of BDC batches. There is a bug in the program which means the last batch does not close i.e. the BDC_CLOSE_GROUP function module is not called for some reason. The result is that sessions are created in SM35 with a number of transactions in them and the session status is 'Being Created'. This will obviously need to be fixed but we are looking for a work around in the meantime.

 

The plan was to manually release and process these sessions. However, this doesn't seem to work, the session will release and go the 'New' status but when it is processed it goes straight to the 'Processed' state without actually running any of the transactions. This happens both when processing in the foreground and background. Is there anything we can do to provide the business with a viable work around until the bug is fixed?Capture.PNG

 

We are still running 4.6C.

Re: Issue in MP and Orissa Ptax Deduction

0
0

Dear Praneeth and Rajesh,

 

  Thanks for your effort.  As praneeth said I will change the slab layout once I get the Confirmed slab notification from the Client and test the same.

 

Mean while I got the issue that , the Ptax of Maharashtra is not deducting for the Current month(Feb'14) for some employees. when we run the employee for Mar'14 month ,the Deduction Carry Forward of Rs300/- (i.e Feb'14)is showing on Mar'14 where as March'14 month Deduction of Rs 200/- was not deducting.

 

But for those employees it was working fine in quality server but not in PRD,

Recently I done the Changes in Slab Layout in V_T7inp3 where I Extent them to 2016. Please refer below the same.

 

 

Please help me out .

 

Thanks

Praveen


Re: SPL Compliance

0
0

Hi Jörg,

 

I took a quick look at the program code in that area.  The code behaves differently depending on whether the address is for a Person or an Organisation.  Maybe you could check in the BP master record if the problem is related to that?

 

Regards,

Dave

Re: PO print out issue- Delivery address name coming partially

0
0

no entry in TWLAD means that you have no storage location addresses maintained.

But what does "And i have changed the text of T001W" mean, does it mean you changed the short address in OX10 detail, or does it mean you clicked the envelope in OX10  and maintained a new central address ?

Re: Operating system call getaddrinfo failed

0
0

/dev/sda1                      23G  632M   21G   3% /

/dev/sdb1                     493G  176G  292G  38% /SAP

/dev/sda5                     7.7G  146M  7.2G   2% /tmp

/dev/sda3                      20G  2.2G   17G  13% /usr

/dev/sda6                     7.7G  478M  6.9G   7% /var

Re: Earliest retro

0
0

Master data change bonus -> depends for which country your running PY. For example Belgium, this field is not available (displayed )on infotype 0003.

 

nevertheless you can change it via report RPUTRBK0 (very useful)

 

update: quickly check it. In PBO processing of infotype 0003 -> FORM hide_rcbon where table T52BX is check.

Re: crm pricing configuration

0
0

Hello  Abhi,

 

What I understand is that you need to mainatin condition record for condition type ZP8R using

transaction /N/SAPCND/GCM in CRM. Is this correct?

 

If yes, check below customizing:

 

SPRO-->IMG-->CRM-->Master Data-->Conditions and Condition Technique-->Condition Technique:Basics-->Create Maintenence Group

 

Make sure you had maintained group ZBUPAPRCE here.

 

SPRO-->IMG-->CRM-->Master Data-->Conditions and Condition Technique-->Condition Technique:Basics-->Define Maintenance Groups for Context

 

Choose GCM and make sure you have added group ZBUPAPRCE here.

 

Best Regards,

Shanthala.

Viewing all 8594 articles
Browse latest View live




Latest Images