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

Re: SAPUI5 Batch operation for PUT Method

$
0
0

Hi Robin,

     I have placed COMMIT WORK in CHANGESET_END method, but the problem is in UPDATE_ENTITYSET method.

It is going in to function module->

 

* Call RFC commit work

   me->/iwbep/if_sb_dpc_comm_services~commit_work(

          EXPORTING

            iv_rfc_dest = lv_destination

       ) .

 

Here it is checking mv_changeset_optotal variable, which is actually number of updating records.

If it is equal to 1, then it is committing, otherwise it is storing dump.

 

I just commented this method, then it is going to  CHANGESET_END and commiting the work. now it is working properly, thanks for your solution.

 

Best Regards,

Vishnu


Re: Viz Charts with OData?

$
0
0

Hi Lewis,

 

U need to add the code provided by Filip and provide binding

Your code:

  1. data: { 
  2.                  path: "/" 
  3.              } 

Right Code:

  1. data: { 
  2.                  path: "/d" 
  3.              } 

As the path of the data has d has root.


Regards

Siddhartha



Re: Installation error NW 7.4 at ABAP REPORTS phase ....

$
0
0

Hello Sravan,

 

Please maintain IP address Hostname and SAPTRANSHOST in etc/host file and try again.

 

Regards

Anand

Re: BDC Update Issue

$
0
0

Hi Vishnu,

 

Try WAIT  UP TO command before your select statement.

Sometime it takes time to update the data base table and you are reading the the database just after the CALL TRANSACTION.

 

 

Regards,

Abhishek

Re: Process & Forms : Application and Process mentioned do not match

Re: BDC Update Issue

$
0
0

Hi Vishnu Choppa,

                         You can use wait up to statement like Abhishek suggestion.

 

 

 

Regards,

     Thangam.P

Re: Business partner

$
0
0

Hi Tnaushree

 

you can use below bapis to change/create BP

 

BAPI_BUPA_CREATE_FROM_DATA

BAPI_BUSPARTNER_CHANGE

BAPI_BUSPARTNER_CREATE

 

Bapi_bupa_*

 

Regards,

Jaydeep

STO batch number issue

$
0
0

Hi Experts,

 

We failed to have GI against STO to bring it's batch number from the DN it belonged to.

 

We use Stock Transport Order with Delivery and Billing Document procedure, and 2 steps for receiving plant, which means 103 with 105.

Can someone guided us where we should check to make the receiving plant with the batch number from the DN directly?

 

Our batch level is currently material level.

 

regards,

Steven


Re: Error in MO - Performance based stretegy Plan

$
0
0

Perhaps you need to give Strategy/Package related screen-shots too. (IP11)

How to display four different templates in same form dynamically

$
0
0

Hi Friends,

 

Happy Christmas!!!

 

I have scenario, where i would be getting importing value/variable(which defines document type) so i have 4 different templates to be displayed in the same form dynamically(any one out of four based on document type). so how to achieve this in Adobe forms?

 

right now i have two thoughts to achieve this.

 

1.design one form(Page) and put all the four templates at same place on the same page and display any one dynamically, if so how to achieve this?

 

2. create four different pages in the same form and dynamically hide remaining three based on document type(importing value), if so how to achieve this?

 

Please guide me how to achieve this and which is the best practise to do this requirement.

 

Regards,

Siva B

Re: Disable checkbox issue

$
0
0

Hi,

How about disabling listItem as below.

listItem._oMultiSelectControl.setEnabled(false)

Unable to clear GL Line item having blank business area

$
0
0

Dear Expert,

 

 

We have a GL named "Payroll Clearing Account" where line item are getting posted with blank business area and profit center. We split the document in BA and PC level, While posting the document system filled BA and PC from other line item in GL view and document get posted,

 

Now we want to clear  "Payroll Clearing Account" through Tcode F-03 having same Dr and Cr amount.But not able to clear due to blank BA and PC field. Is there any way to clear this GL. \


Kindly Suggest

 

Regards

Rajesh

Re: Invalid acount code in J.E

$
0
0

Hi Muhammad,

 

 

 

When you trying to uplaod the template of JE you need to mapped the Account Code as '_SYS00000000001'. For these you have to run below query...

 

 

 

SELECT *  FROM OACT T0

 

 

 

Also fill the LinNum columns

 

 

 

Rgds,

Kamlesh Naware

interactive alv

$
0
0

Want top of page in all levels of report...............

 

 

 

 

TYPE-POOLS: slis .

TABLES : kna1 .

 

 

TYPES : BEGIN OF ty_kna1  ,

         kunnr  TYPE kna1-kunnr ,

         name1  TYPE kna1-name1 ,

         land1  TYPE kna1-land1 ,

         END OF ty_kna1 .

 

 

 

 

TYPES : BEGIN OF ty_vbak ,

         vbeln  TYPE vbak-vbeln ,

         erdat  TYPE vbak-erdat ,

         netwr  TYPE vbak-netwr ,

         END OF ty_vbak .

 

 

 

 

TYPES : BEGIN OF ty_vbap  ,

         posnr TYPE vbap-posnr ,

         arktx TYPE vbap-arktx ,

         werks TYPE vbap-werks ,

         END OF ty_vbap .

 

 

 

 

DATA : x TYPE i .

 

 

************************************************************************

*             INTERNAL TABLE DECLARATION                                                          *

************************************************************************

 

 

 

 

DATA :   t_kna1 TYPE STANDARD TABLE OF ty_kna1 INITIAL SIZE 1 ,

         t_vbak TYPE STANDARD TABLE OF ty_vbak INITIAL SIZE 1 ,

         t_vbap TYPE STANDARD TABLE OF ty_vbap INITIAL SIZE 1 .

 

 

 

 

************************************************************************

*         WORK AREA DECLARATION                                                              *

************************************************************************

 

 

DATA : w_kna1 TYPE ty_kna1 ,

       w_vbak TYPE ty_vbak ,

       w_vbap TYPE ty_vbap .

 

 

************************************************************************

*            STANDARD TYPE POOL                                                           *

************************************************************************

 

 

DATA : w_fcat TYPE slis_fieldcat_alv .

DATA : t_fcat TYPE slis_t_fieldcat_alv .

DATA : t_fcat1 TYPE slis_t_fieldcat_alv .

DATA : t_fcat2 TYPE slis_t_fieldcat_alv .

DATA : w_comments TYPE slis_listheader .

DATA:  t_comments TYPE slis_t_listheader .

DATA : T_COMMENTS1 TYPE SLIS_T_LISTHEADER .

DATA : T_COMMENTS2 TYPE SLIS_T_LISTHEADER .

DATA : T_COMMENTS3 TYPE SLIS_T_LISTHEADER .

DATA : w_events TYPE slis_alv_event .

DATA : t_events TYPE slis_t_event .

DATA : t_events1 TYPE slis_t_event .

DATA : t_events2 TYPE slis_t_event .

DATA: gt_events     type slis_t_event .

DATA :gd_prntparams type slis_print_alv .

 

 

 

 

 

 

************************************************************************

*      SYSTEM FIELD TO HOLD CURRENT PROGRAM NAME                                                      *

************************************************************************

 

 

 

 

DATA : v_prog TYPE sy-repid .

v_prog = sy-repid .

 

 

************************************************************************

*      SELECTIO SCREEN                                                                 *

************************************************************************

 

 

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE  TEXT-001 .

 

 

SELECT-OPTIONS : s_kunnr FOR kna1-kunnr .

 

 

SELECTION-SCREEN END OF BLOCK B1 .

 

 

 

 

************************************************************************

*          FIELD CATALOG FOR KNA1-CUSTOMER DATA                                                       *

************************************************************************

 

 

 

 

w_fcat-col_pos = 1 .

w_fcat-fieldname = 'KUNNR '.

w_fcat-seltext_m = 'CUST NO'.

APPEND w_fcat TO t_fcat .

 

 

 

 

w_fcat-col_pos = 2 .

w_fcat-fieldname = 'NAME1 '.

w_fcat-seltext_m = 'CUST NAME'.

APPEND w_fcat TO t_fcat .

 

 

 

 

w_fcat-col_pos = 3 .

w_fcat-fieldname = 'LAND1 '.

w_fcat-seltext_m = 'CUST COUNTRY'.

APPEND w_fcat TO t_fcat .

 

 

************************************************************************

*            FIELD CATALOG FOR VBAK-SALES DATA                                                          *

************************************************************************

 

 

w_fcat-col_pos = 1.

w_fcat-fieldname = 'VBELN '.

w_fcat-seltext_m = 'ORDER NO'.

APPEND w_fcat TO t_fcat1 .

 

 

 

 

w_fcat-col_pos = 2 .

w_fcat-fieldname = 'ERDAT '.

w_fcat-seltext_m = 'ORDER DATA'.

APPEND w_fcat TO t_fcat1 .

 

 

 

 

w_fcat-col_pos = 3.

w_fcat-fieldname = 'NETWR '.

w_fcat-seltext_m = 'NET VALUE'.

APPEND w_fcat TO t_fcat1 .

 

 

************************************************************************

*          FIELD CATALOG FOR VBAP- SALES ITEM DATA                                                          *

************************************************************************

 

 

w_fcat-col_pos = 1.

w_fcat-fieldname = 'POSNR '.

w_fcat-seltext_m = 'SALES ITEM '.

APPEND w_fcat TO t_fcat2 .

 

 

 

 

w_fcat-col_pos = 2.

w_fcat-fieldname = 'ARKTX '.

w_fcat-seltext_m = 'SALES DESC'.

APPEND w_fcat TO t_fcat2 .

 

 

 

 

 

 

 

 

w_fcat-col_pos = '3'.

w_fcat-fieldname = 'WERKS '.

w_fcat-seltext_m = 'PLANT'.

APPEND w_fcat TO t_fcat2 .

 

 

 

 

************************************************************************

*           TOP OF PAGE HEADING FOR BASIC LIST                                                        *

************************************************************************

 

 

w_comments-typ ='H'.

w_comments-info ='CUSTOMER DATA'.

APPEND w_comments TO t_comments .

 

 

WRITE : S_KUNNR-LOW TO S_KUNNR-LOW NO-ZERO .

WRITE : S_KUNNR-HIGH TO S_KUNNR-HIGH NO-ZERO .

 

 

DATA : A TYPE STRING .

 

 

CONCATENATE S_KUNNR-LOW ' TO' S_KUNNR-LOW  INTO A SEPARATED BY SPACE .

CLEAR W_COMMENTS .

 

 

 

 

w_comments-typ ='S'.

w_comments-key ='CUST NO'.

w_comments-info = A .

APPEND w_comments TO t_comments .

 

 

************************************************************************

*          TOP OF PAGE FOR BASIC LIST                                                             *

************************************************************************

 

 

w_events-name ='TOP_OF_PAGE'.

w_events-form ='SUB1'.

APPEND w_events TO t_events.

 

 

************************************************************************

*            DETAIL LIST EVENT                                                          *

************************************************************************

 

 

w_events-name = 'USER_COMMAND'.

w_events-form = 'SUB2'.

APPEND w_events TO t_events .

 

 

 

 

************************************************************************

*       TOP OF PAGE FOR FIRST DETAIL LIST                                                              *

************************************************************************

 

 

 

 

w_events-name = 'TOP_OF_PAGE'.

w_events-form = 'SUB3'.

APPEND w_events TO t_events1 .

 

 

************************************************************************

*        TOP OF PAGE FOR SECOND DETAIL LIST                                                              *

************************************************************************

 

 

w_events-name = 'TOP_OF_PAGE'.

w_events-form = 'SUB4'.

APPEND w_events TO t_events2 .

************************************************************************

*     event for second detail list                                                                 *

************************************************************************

w_events-name = 'USER_COMMAND'.

w_events-form = 'SUB5'.

APPEND w_events TO t_events1 .

 

 

W_EVENTS-NAME = 'END_OF_PAGE'.

W_EVENTS-FORM = 'SUB6'.

APPEND W_EVENTS TO T_EVENTS .

 

 

************************************************************************

*          FETCH DATA FROM KNA1 TABLE                                                            *

************************************************************************

 

 

SELECT kunnr

         name1

         land1 FROM kna1 INTO TABLE t_kna1

               WHERE kunnr IN s_kunnr .

 

 

************************************************************************

*           DISPLAY DATA OF KNA1 IN GRID FORMAT                                                           *

************************************************************************

 

 

 

 

 

 

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

*   I_INTERFACE_CHECK                 = ' '

*   I_BYPASSING_BUFFER                = ' '

*   I_BUFFER_ACTIVE                   = ' '

     i_callback_program                = v_prog

*   I_CALLBACK_PF_STATUS_SET          = ' '

*   I_CALLBACK_USER_COMMAND           = ' '

*   i_callback_top_of_page            = 'TOP_OF_PAGE'

*     i_callback_top_of_page            = 'SUB'

*   I_CALLBACK_HTML_TOP_OF_PAGE       = 'TOP_OF_PAGE'

*   I_CALLBACK_HTML_END_OF_LIST       = ' '

*   I_STRUCTURE_NAME                  =

*   I_BACKGROUND_ID                   = ' '

*   I_GRID_TITLE                      =

*   I_GRID_SETTINGS                   =

*   IS_LAYOUT                         =

     it_fieldcat                       = t_fcat

*   IT_EXCLUDING                      =

*   IT_SPECIAL_GROUPS                 =

*   IT_SORT                           =

*   IT_FILTER                         =

*   IS_SEL_HIDE                       =

*   I_DEFAULT                         = 'X'

*   I_SAVE                            = ' '

*   IS_VARIANT                        =

     it_events                         = t_events

*   IT_EVENT_EXIT                     =

*   IS_PRINT                          =

*   IS_REPREP_ID                      =

*   I_SCREEN_START_COLUMN             = 0

*   I_SCREEN_START_LINE               = 0

*   I_SCREEN_END_COLUMN               = 0

*   I_SCREEN_END_LINE                 = 0

*   I_HTML_HEIGHT_TOP                 = 0

*   I_HTML_HEIGHT_END                 = 0

*   IT_ALV_GRAPHICS                   =

*   IT_HYPERLINK                      =

*   IT_ADD_FIELDCAT                   =

*   IT_EXCEPT_QINFO                   =

*   IR_SALV_FULLSCREEN_ADAPTER        =

* IMPORTING

*   E_EXIT_CAUSED_BY_CALLER           =

*   ES_EXIT_CAUSED_BY_USER            =

    TABLES

      t_outtab                          = t_kna1

* EXCEPTIONS

*   PROGRAM_ERROR                     = 1

*   OTHERS                            = 2

            .

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

*&---------------------------------------------------------------------*

*&      Form  SUB

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

FORM sub1 .

    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

      EXPORTING

        it_list_commentary       = t_comments

*   I_LOGO                   =

*   I_END_OF_LIST_GRID       =

*   I_ALV_FORM               =

              .

ENDFORM .                    "SUBC

 

 

 

 

 

 

 

 

 

 

************************************************************************

*        FIRST DETAILED LIST                                                               *

************************************************************************

 

 

 

 

FORM sub2 USING r_ucomm LIKE sy-ucomm

                  rs_selfield TYPE slis_selfield .

 

 

 

 

 

 

    SELECT vbeln

            erdat

            netwr  FROM vbak INTO TABLE t_vbak

                   WHERE kunnr = rs_selfield-value .

********************************************************************************************************************************************

*     READ TABLE IS USED TO DISPLAY CONTENT IN TOP OF PAGE OF DETAIL LIST                                                          *

********************************************************************************************************************************************

 

 

 

 

READ TABLE T_KNA1 INTO W_KNA1 WITH KEY KUNNR = RS_SELFIELD-VALUE .

 

 

************************************************************************

*    DISPLAY DATA THRU FUNCTION MODULE                                                                *

************************************************************************

 

 

    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

    EXPORTING

*   I_INTERFACE_CHECK                 = ' '

*   I_BYPASSING_BUFFER                = ' '

*   I_BUFFER_ACTIVE                   = ' '

       i_callback_program             = v_prog

*   I_CALLBACK_PF_STATUS_SET          = ' '

*   I_CALLBACK_USER_COMMAND           = ' '

*     i_callback_top_of_page            = 'TOP_OF_PAGE'

**       i_callback_top_of_page            = 'SUB'

*   I_CALLBACK_HTML_TOP_OF_PAGE       = 'top_of_page '

*   I_CALLBACK_HTML_END_OF_LIST       = ' '

*   I_STRUCTURE_NAME                  =

*   I_BACKGROUND_ID                   = ' '

*   I_GRID_TITLE                      =

*   I_GRID_SETTINGS                   =

*   IS_LAYOUT                         =

       it_fieldcat                       = t_fcat1

*   IT_EXCLUDING                      =

*   IT_SPECIAL_GROUPS                 =

*   IT_SORT                           =

*   IT_FILTER                         =

*   IS_SEL_HIDE                       =

*   I_DEFAULT                         = 'X'

*   I_SAVE                            = ' '

*   IS_VARIANT                        =

       it_events                      = t_events1

*   IT_EVENT_EXIT                     =

*   IS_PRINT                          =

*   IS_REPREP_ID                      =

*   I_SCREEN_START_COLUMN             = 0

*   I_SCREEN_START_LINE               = 0

*   I_SCREEN_END_COLUMN               = 0

*   I_SCREEN_END_LINE                 = 0

*   I_HTML_HEIGHT_TOP                 = 0

*   I_HTML_HEIGHT_END                 = 0

*   IT_ALV_GRAPHICS                   =

*   IT_HYPERLINK                      =

*   IT_ADD_FIELDCAT                   =

*   IT_EXCEPT_QINFO                   =

*   IR_SALV_FULLSCREEN_ADAPTER        =

* IMPORTING

*   E_EXIT_CAUSED_BY_CALLER           =

*   ES_EXIT_CAUSED_BY_USER            =

      TABLES

        t_outtab                          = t_vbak

* EXCEPTIONS

*   PROGRAM_ERROR                     = 1

*   OTHERS                            = 2

              .

 

 

 

 

ENDFORM .                    "SUB1

 

 

 

 

 

 

 

 

 

 

 

 

*&---------------------------------------------------------------------*

*&      Form  SUB2

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*      -->R_UCOMM      text

*      -->RS_SELFIELD  text

*----------------------------------------------------------------------*

FORM sub3.

 

 

REFRESH T_COMMENTS1 .

 

 

************************************************************************

*          TOP OF PAGE CONTENT FOR FIRST DETAIL LIST                                                            *

************************************************************************

 

 

CLEAR W_COMMENTS .

W_COMMENTS-TYP = 'H'.

W_COMMENTS-INFO ='LIST OF ORDERS '.

APPEND W_COMMENTS TO T_COMMENTS1 .

 

 

CLEAR W_COMMENTS .

 

 

WRITE : W_KNA1-KUNNR TO W_KNA1-KUNNR NO-ZERO .  "

 

 

 

 

W_COMMENTS-TYP = 'S'.

W_COMMENTS-KEY = 'SOLD TO PARTY '.

W_COMMENTS-INFO = W_KNA1-KUNNR .

APPEND W_COMMENTS TO T_COMMENTS1 .

CLEAR W_COMMENTS .

 

 

W_COMMENTS-TYP = 'S'.

W_COMMENTS-KEY = 'NAME '.

W_COMMENTS-INFO = W_KNA1-KUNNR .

APPEND W_COMMENTS TO T_COMMENTS1 .

CLEAR W_COMMENTS .

 

 

W_COMMENTS-TYP = 'S'.

W_COMMENTS-KEY = 'COUNTRY '.

W_COMMENTS-INFO = W_KNA1-LAND1 .

APPEND W_COMMENTS TO T_COMMENTS1 .

 

 

CLEAR W_COMMENTS .

 

 

 

 

 

 

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

      EXPORTING

        it_list_commentary       = t_comments1

*   I_LOGO                   =

*   I_END_OF_LIST_GRID       =

*   I_ALV_FORM               =

              .

 

 

ENDFORM .

 

 

FORM sub5 USING r_ucomm LIKE sy-ucomm

                  rs_selfield TYPE slis_selfield .

 

 

 

 

 

 

    SELECT  POSNR

            ARKTX

            WERKS  FROM VBAP INTO TABLE t_VBAP

                   WHERE VBELN = rs_selfield-value .   "

 

********************************************************************************************************************************************

*                                                        *

********************************************************************************************************************************************

 

 

 

 

READ TABLE T_vbak INTO W_vbak WITH KEY VBELN = RS_SELFIELD-VALUE .

 

READ TABLE T_kna1 INTO W_kna1 WITH KEY kunnr = RS_SELFIELD-VALUE .

************************************************************************

*    DISPLAY DATA THRU FUNCTION MODULE                                                                *

************************************************************************

 

 

    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

    EXPORTING

*   I_INTERFACE_CHECK                 = ' '

*   I_BYPASSING_BUFFER                = ' '

*   I_BUFFER_ACTIVE                   = ' '

       i_callback_program                = v_prog

*   I_CALLBACK_PF_STATUS_SET          = ' '

*   I_CALLBACK_USER_COMMAND           = ' '

*     i_callback_top_of_page            = 'TOP_OF_PAGE'

**       i_callback_top_of_page            = 'SUB'

*   I_CALLBACK_HTML_TOP_OF_PAGE       = 'top_of_page '

*   I_CALLBACK_HTML_END_OF_LIST       = ' '

*   I_STRUCTURE_NAME                  =

*   I_BACKGROUND_ID                   = ' '

*   I_GRID_TITLE                      =

*   I_GRID_SETTINGS                   =

*   IS_LAYOUT                         =

       it_fieldcat                       = t_fcat2

*   IT_EXCLUDING                      =

*   IT_SPECIAL_GROUPS                 =

*   IT_SORT                           =

*   IT_FILTER                         =

*   IS_SEL_HIDE                       =

*   I_DEFAULT                         = 'X'

*   I_SAVE                            = ' '

*   IS_VARIANT                        =

       it_events                         = t_events2

*   IT_EVENT_EXIT                     =

*   IS_PRINT                          =

*   IS_REPREP_ID                      =

*   I_SCREEN_START_COLUMN             = 0

*   I_SCREEN_START_LINE               = 0

*   I_SCREEN_END_COLUMN               = 0

*   I_SCREEN_END_LINE                 = 0

*   I_HTML_HEIGHT_TOP                 = 0

*   I_HTML_HEIGHT_END                 = 0

*   IT_ALV_GRAPHICS                   =

*   IT_HYPERLINK                      =

*   IT_ADD_FIELDCAT                   =

*   IT_EXCEPT_QINFO                   =

*   IR_SALV_FULLSCREEN_ADAPTER        =

* IMPORTING

*   E_EXIT_CAUSED_BY_CALLER           =

*   ES_EXIT_CAUSED_BY_USER            =

      TABLES

        t_outtab                          = t_vbap

* EXCEPTIONS

*   PROGRAM_ERROR                     = 1

*   OTHERS                            = 2

              .

 

 

 

 

ENDFORM .                    "SUB1

 

 

 

 

 

 

 

 

 

 

 

 

*&---------------------------------------------------------------------*

*&      Form  SUB2

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*      -->R_UCOMM      text

*      -->RS_SELFIELD  text

*----------------------------------------------------------------------*

FORM sub4.

 

 

REFRESH T_COMMENTS2 .   "

 

 

************************************************************************

*          TOP OF PAGE CONTENT FOR FIRST DETAIL LIST                                                            *

************************************************************************

 

 

CLEAR W_COMMENTS .

W_COMMENTS-TYP = 'H'.

W_COMMENTS-INFO ='LIST OF sales item data '.

APPEND W_COMMENTS TO T_COMMENTS2 .

 

 

CLEAR W_COMMENTS .

 

 

 

 

 

 

write w_vbak-vbeln to w_vbak-vbeln no-ZERO .

 

 

 

 

W_COMMENTS-TYP = 'S'.

W_COMMENTS-KEY = 'sales doc '.              "

W_COMMENTS-INFO = W_vbak-vbeln .            "

APPEND W_COMMENTS TO T_COMMENTS2 .         

 

 

CLEAR W_COMMENTS .

 

 

 

 

W_COMMENTS-TYP = 'S'.

W_COMMENTS-KEY = 'sales doc date '.

W_COMMENTS-INFO = W_vbak-erdat .

APPEND W_COMMENTS TO T_COMMENTS2.

 

 

CLEAR W_COMMENTS .

 

 

 

 

 

 

w_comments-typ = 'S'.

w_comments-key = 'sold to party'.

w_comments-info = w_kna1-kunnr .

APPEND W_COMMENTS TO T_COMMENTS2 .

CLEAR W_COMMENTS .

 

 

 

 

w_comments-typ = 'S'.

w_comments-key = 'name'.

w_comments-info = w_kna1-name1 .

APPEND W_COMMENTS TO T_COMMENTS2 .

 

 

 

 

 

 

 

 

 

 

 

 

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

      EXPORTING

        it_list_commentary       = t_comments2

*   I_LOGO                   =

*   I_END_OF_LIST_GRID       =

*   I_ALV_FORM               =

              .

 

 

ENDFORM

Unable See Trip overview on behalf of employee in MSS

$
0
0

Hi All,

 

Good Morning to all !

 

Hope all of you are doing well!

 

I have configured Travel management and in MSS Team option want show On behalf travel request and trip overview of particular employee. My on behalf of travel request is working but Trip overview of that employee is not fetching with his name, and instead of that Manager trip overview fetching there.

 

Request to all of you please help me to resolve this issue.

 

Regards

Amol


Re: Want to disable multiple logon restriction only for some users

$
0
0

Hi,

 

As per my knowledge in SAP it is not possible to have more users than the respected space allocated. I think it's around 75-80 characters.


The parameter "login/multi_login_users=username1,username2,username3" is designed for a smaller group of users.


Regards


Praveen

Re: Report explode issue

$
0
0

Hi ...Raza

 

 

I have maintained gs11 variable and also my gl account group 310 for ramkey1 variable group

created when i was explode the value rows in explode option there is no explodation

 

when i was changing the my account group for variable 310 is not showing

 

 

can you give suggestion for me

 

 

gs11.PNG

Re: Email Alerts of occurrence of any events are default or require customization

$
0
0

Dear Frank Wang,

 

Thanks for your response. Can we generate various query as per our requirement, in case we are not interested to customize with our partner for implementation. If yes whether its query code avail on SAP B1 Community or need coding expertise for the same.

 

Thanks & Warm Regards,

 

Vijay N. Chavda

TM and EM in same server

$
0
0

Hi,

Based on the integration guide available for SAP TM EM , in case they are installed in same server how do we check the RFC connection and config under Define SAP EM since I am not sure what entries to maintain as they are installed on same server

SAP GTS for SAP CS

$
0
0

Hello All,

 

Can anybody please give a brief idea about how SAP GTS works for SAP CS???

 

Regards,

Kunal

Viewing all 8713 articles
Browse latest View live




Latest Images