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

Re: Pop in Webi Report when closes the report

$
0
0

Hi Plank,

 

I have tried your solution.But it is not working.

 

Thanks,

Kalyan.


Re: How do I display the SAP ODATA response with a nested JSON Structure??

$
0
0

Thanks for your time Ashish.

But how can I achieve this in my SAP Odata response through SAP Netweaver Gateway.

 

 

Thanks & Regards,

Thejus Singh J

Re: Affordable Care Act (ACA)

$
0
0

Re:  1623:

 

For our Full Year Active employees, we are populating 2G on Line 16 for waived plans (when they are enrolled in No Coverage).

 

We have not yet applied Notes 9 and 10, but I am hoping/anticipating that 2G should still be populated on Line 16.

Re: oracle AL32UTF8 code page data extraction issue

$
0
0

Can you change the Code Page and Server Code Page to CP1256

 

Regards

Arun Sasi

STO Issue BAPI_GOODSMVT_CREATE

$
0
0

Hi Frds,

 

I have created a RFC For Posting Inbound Delivery using the BAPI_GOODSMVT_CREATE

 

I am not getting any return message also , Also not posting any material document also here my piece of code help me out

 

 

FUNCTION zsd_fiori_gr_delivery.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  IMPORTING
*"     VALUE(ZRFC_GR) TYPE  ZRFC_GR
*"  TABLES
*"      RETURN STRUCTURE  BAPIRET2
*"----------------------------------------------------------------------


   DATA: lt_goodsmvt_item         TYPE TABLE OF  bapi2017_gm_item_create,
         ls_goodsmvt_item         TYPE bapi2017_gm_item_create,
         lt_goodsmvt_serialnumber TYPE TABLE OF bapi2017_gm_serialnumber,
         ls_goodsmvt_serialnumber TYPE bapi2017_gm_serialnumber,
         lt_lips                  TYPE TABLE OF lips,
         ls_return                TYPE bapiret2,
         ls_lips                  TYPE lips,
         ls_likp                  TYPE likp,
         goodsmvt_header          TYPE bapi2017_gm_head_01,
         goodsmvt_code            TYPE bapi2017_gm_code,
         lt_return                TYPE TABLE OF bapiret2,
         lt_error                 TYPE TABLE OF bapiret2.



   DATA:ls_zsddel TYPE zsddel.





   SELECT * FROM lips INTO TABLE lt_lips
     WHERE vbeln = zrfc_gr-vbeln.

   IF sy-subrc = 0.

     READ TABLE lt_lips INTO ls_lips INDEX 1.
     IF sy-subrc = 0.
       if zrfc_gr-erfmg gt ls_lips-lfimg .
         ls_return-message = 'GR Qty is Exceeded'.
           APPEND ls_return TO return.
       ELSE.
       SELECT SINGLE *
         FROM likp
         INTO ls_likp
         WHERE vbeln = zrfc_gr-vbeln.


       ls_goodsmvt_item-material    = ls_lips-matnr.
       ls_goodsmvt_item-plant       = ls_likp-kunnr+0(4)."zrfc_gr-werks.
       ls_goodsmvt_item-stge_loc    = zrfc_gr-lgort.
       ls_goodsmvt_item-move_type   = '101'.
       ls_goodsmvt_item-entry_qnt   = zrfc_gr-erfmg.
       ls_goodsmvt_item-entry_uom   = ls_lips-vrkme.
       ls_goodsmvt_item-entry_uom_iso = ls_lips-vrkme.
*      ls_goodsmvt_item-no_more_gr  = 'X'.
       ls_goodsmvt_item-mvt_ind     = 'B'. "'L'.
       ls_goodsmvt_item-po_number   = ls_lips-vgbel.
       ls_goodsmvt_item-po_item     = ls_lips-vgpos.
       ls_goodsmvt_item-deliv_numb  = ls_lips-vbeln.
       ls_goodsmvt_item-deliv_item  = ls_lips-posnr.


       ls_goodsmvt_item-prod_date = sy-datum.
       ls_goodsmvt_item-po_number   = ls_lips-vgbel.
       ls_goodsmvt_item-po_item     = ls_lips-vgpos.
       ls_goodsmvt_item-deliv_numb  = ls_lips-vbeln.
       ls_goodsmvt_item-deliv_item  = ls_lips-posnr.
       ls_goodsmvt_item-deliv_numb_to_search   = ls_lips-vbeln.
       ls_goodsmvt_item-deliv_item_to_search   = ls_lips-posnr.

       APPEND ls_goodsmvt_item TO lt_goodsmvt_item.



       goodsmvt_header-pstng_date = sy-datum.
       goodsmvt_header-doc_date   = sy-datum.
       goodsmvt_header-ref_doc_no = ls_lips-vbeln.
       goodsmvt_header-pr_uname   = sy-uname.

       CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
         EXPORTING
           goodsmvt_header = goodsmvt_header
           goodsmvt_code   = '01'
*         TESTRUN         = ' '
*         GOODSMVT_REF_EWM              =
*       IMPORTING
*         GOODSMVT_HEADRET              =
*         MATERIALDOCUMENT              =
*         MATDOCUMENTYEAR =
         TABLES
           goodsmvt_item   = lt_goodsmvt_item
*         GOODSMVT_SERIALNUMBER         =
           return          = return
*         GOODSMVT_SERV_PART_DATA       =
*         EXTENSIONIN     =
         .
*      IF return IS INITIAL .
       READ TABLE return WITH KEY type = 'S'.

       IF sy-subrc = 0.
         CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
             wait = 'X'.

         ls_return-type = 'S'.
         ls_return-message = ls_return-message.
         APPEND ls_return TO return.
         CLEAR ls_return.


         SELECT SINGLE *
          FROM zsddel
          INTO ls_zsddel
          WHERE vbeln = zrfc_gr-vbeln.

         IF sy-subrc = 0.

           ls_zsddel-cf_quantity  = zrfc_gr-cf_quantity.
           MODIFY zsddel FROM ls_zsddel.
           CLEAR ls_zsddel.

         ENDIF.


       ELSE.

         READ TABLE return WITH KEY type = 'E'.
         IF sy-subrc = 0.
           ls_return-type = 'E'.
           ls_return-message = ls_return-message.

           APPEND ls_return TO lt_error.
           CLEAR ls_return.

           APPEND LINES OF lt_error TO return.
         ENDIF.
       ENDIF.

   endif.
     ENDIF.
   ENDIF.
ENDFUNCTION.

Re: C4C Production system copy to quality

$
0
0

Thanks Suman,

 

Will copy form P to Q will be done in existing test tenant or this will create a new tenant ?

If it's new one will this be treated as additional requested test tenant and we need to pay for it?

 

What will happen to existing test tenant ?

 

Thanks,

Nitin Patki

Re: EHP7 UPGRADE ISSUE Cannot append to 'D:\usr\sap\SUM\abap\log\STORE2BUFFER.ECO'

$
0
0

Hallo,

 

bei mir war es auch der Trend Micro Virenscanner in Phase TR_STORE2BUFFER_SHDINC. Nach Disablen der Services vom Virenscanner lief der SUM weiter.

Re: View On Demand

$
0
0

Hi Ben,

 

I will explain how exactly I have implemented this.

 

I have placed the restricted universes in the "Restricted Universes Folder".

Later I have created an access level which would restrict users from viewing/editing any reports based on the restricted universes.

 

Now, on the restricted universes folder, I have added the groups which should not be able to edit/see these universes and applied restricted universe access level and view on demand access level to these groups.

 

This way users were able to refresh the reports based on these universes but they were not able to edit/create any new reports based on these universes.

 

In BO, denied access rights get priority over granted rights. So even if these groups/users are also the part of any other group where the edit rights are given, denied rights should get applied.

 

Hope this would be helpful.

 

~Swapnil


Re: SAP Afaria / Mobile Secure iOS 9.2 Upgrade Advisory

$
0
0

Hi All,

 

we are experiencing the error with 9.2.1 also after patch SP12.

 

Everything is working correctly in iOS 9.3 preview, custom Afaria client is deployed and connects to the server. With iOS 9.2.1 Afaria is not installed with error IPH6021: MDM app Deployment Error.

 

Any hints on this?!

 

Thank you.

AK -

Re: how to email alert when process server is in shutdown status

$
0
0

Hi,

 

I am marking this post as closed.  I was able to use the AND operator to complete the code.

 

Thank you to all who responded.

 

Best Regards,

Rick

CLM: Filter prompts and Value list Values

$
0
0

Hello experts,

 

I'm not very familiar with SQL and need some help to create specific operators. I took the table FCI_CONGEN_DOC and I want to create a filter prompt which contains the operators "Equals" and "Not Equals" instead of entering the value in a free text field but if I choose the defined values from the "Value List Types" I got an error message.

 

I choose this settings for my filter prompt:


F.prompt.PNG

After creating this I will get this error by using the filter:

 

F.prompt(2).PNG

 

Maybe I have to create a query group with object reference instead. Any ideas how I can realize this issue?

 

Best regards,

Heiko

Re: EPMDimensionOverride with Parentafter

$
0
0

We are on SP25

 

I cannot use the Report Editor because my row key range is dynamic based on user selections, hence, why I am using the EPMDimensionOverride functionality.

 

My property value for the parent is not the same as the bas members.  So you are saying that it is impossible in BPC10 to utilize parentafter if that's the case?

 

If I were to add the property of the parent, how would I get that to display where I want it to.  For example, if I added the property of that parent, I would not want all members with that property to show on the report together (because there would be more than one member with that property value), I would want it to display as the parent, after the applicable children of that parent as shown in my screen shot above.

 

I did realize that might be an issue, having a different property for the parent, however, this functionality worked just fine in BPC 7.5 and gave me the results I wanted.

Re: Service Master Support in E-Sourcing/CLM

$
0
0

Hi Ed, we have decided to do a poc on using the clm rest service for our rfp creation since we can't enhance the standard interface (ep rfq- clm rfp) for what we need. I just want to make sure that everything in the blog will be supported, like creating the interface to send up servce masters as well as material.

 

Thanks,

Katie

Existem códigos das Regiões para os países Argélia e Emirados Árabes?

$
0
0

Pessoal,

 

Estou cadastrando novas regiões para os clientes dos quais pertencem aos países Argélia e Emirados Árabes no SAP.

 

Porem pelo que eu achei até o momento não ha nenhum código de regiões especifico para esses dois países.

 

Portanto minha duvida seria: O cadastrado seria em ordem alfabética estipulando um código inicial por exemplo:

 

Emirados Árabes(AE):

 

01-Abu Dhabi

02-Ajman

03-Dubai

04-Fujeirah

06-Ra’s al-Khaimah

07-Sharjah

08-Umm al-Qaiwain

 

 

Argélia(DZ):

 

01Adrar
02Ain Defla
03Ain Temouchent
04Argel
05Annaba
06Batna
07Bechar
08Bejaia
09Biskra
10Blida
11Bordj Bou Arreridj
12Bouira
13Boumerdes
14Chlef
15Constantina
16Djelfa
17El Bayadh
18El Oued
19El Tarf
20Ghardaia
21Guelma
22Illizi
23Jijel
24Khenchela
25Laghouat
26Mascara
27Medea
28Mila
29Mostaganem
30M'Sila
31Naama
32Oran
33Ouargla
34Oum el Bouaghi
35Relizane
36Saida
37Setif
38Sidi Bel Abbes
39Skikda
40Souk Ahras
41Tamanghasset
42Tebessa
43Tiaret
44Tindouf
45Tipaza
46Tissemslit
47Tizi Ouzou
48Tlemcen

Re: SRS Certification on Solaris 11?

$
0
0

Hey Chris - hope all is well with you!

 

The supported OS platforms are documented in the Installation Guide -> Planning Your Installation -> System Requirements section.  For SP302 it states Solaris (64bit) 10 and 11 - this is both Sparc and X64.  I will open a doc CR to specifiy that it is both Sparc and x64 to make it more clear.


Re: Customising 'Create Master Data on the Fly' to enable EDIT of master data BPC10NW

$
0
0

"Can we create multiple records" - in general - yes, but you have to change a little badi code and decide how you will pass multiple members data!

Re: How to open Web-based Development Workbench i HCP?

Re: Http service not starting on Trex server

$
0
0

Hi Abhishek , could you please recreate the WebServer from the TREXAdminTool -> Connectivity -> Http tab. Best regards, Mikhail

Re: HANA doesn't auto start when instance is started

$
0
0

Hi Hakan,

 

Can you check if autostart is set to 1 in profile HDB_HDB00_hdbhost

 

Gopal

While creating ME21N when i enter Asset number cost center number missing

$
0
0

Hi folks,

 

 

During the creation of the PO (ME21N) when I enter the asset number in account assignment tab and when press enter all the asset related data coming but cost center number is missing. can any one help me why it is missing.


thank you.


Regards,

Radhakrishna Ette


Viewing all 8676 articles
Browse latest View live




Latest Images