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

Re: Blank Screen coming in Tcode IW21 after our customised Tab


Re: SUM SP16 profiles issue (can't save profile)

$
0
0

I have this exact same issue even with the latest patch of SUM 1.0 SP16. I noticed SAP releases patches for SUM every week but this is still not fixed.

 

We have another issue using SUM when upgrading SAP BW to SAP BW 7.5 with ERP components where the proposed is to Solution is to apply CISI to target system via SUM and yet because of the error mentioned above, we are stuck!!!

Re: Stuck in SUM phase READDATA_EXP (EHP8)

$
0
0

I have the exact same problem as Stefan and I've already downloaded all the DVDs and extracted/combined as per SAP Note, but the problem is still the same.

 

For the CISI, I couldn't even proceed with the SUM portion because SUM tool keeps on asking for a START profile which no longer exists in newer SAP systems.cisi_error_2.png

Re: Work Flow for approving Request ITSM

How to display error message in SAP BRF+ workbench

$
0
0

Hi All,

 

Can anyone help me out ,whether is there any  possibility to display error in  BRF+ Workbench .Are there any standard classes which can be used to display error through API's .

 

Thank you in advance,

Jahnavi Teja Venati.

Re: Customer Exit variable in BEx Query

Re: China Tax ID

$
0
0

Hi Ajay,

 

Thanks for your response. so, Can we achieve Business Area Financial Statements with out activating BA as splitting characteristic? If i activated, i am worried this will impact my total system. More over we have mark up price between locations hence it mandates different plants province wise. If we go ahead with BA, how Inter company bill happens? Please help.

 

Best

Meghana.

Re: Stuck in SUM phase READDATA_EXP (EHP8)

$
0
0

Hi,

 

thanks to all of you. The issue is now resolved. The problem was indeed a wrong definition in LMDB of the involved system.

 

We have a system with Netweaver 7.31 and an addon named "SAP SEM". I changed it to "SEM" only in LMDB and then the system was recognized correctly in the maintenance planner as a Netweaver system instead of an ERP system.

 

So now SUM is asking for the NW 750 Kit.

 

Greetings

Stefan


Re: "Database disconnected; choose the OK button to exit the database"

$
0
0

Hi Ashwin,

 

 

Yesterday, SAP released the SAP B1 9.1 PL12. So, you can upgrade to this new patch

 

 

Rgds,

Jimmy

How to execute ABAP program in another ABAP program? I wish to execute 'BUFFER' program

$
0
0

REPORT  ZGETVALUE1.

 

 

TABLES: fupararef.

DATA SE80 type C.

DATA BUFFER type RSWSOURCET.

DATA WA type LINE OF RSWSOURCET.

   data: tbl_fupararef type fupararef occurs 0 with header line.

 

 

   DATA: L_LIN1(72),

         l_lin2(72),

         name(30).

 

   datait_fields type sval occurs 0 with header line.

 

   refresh: it_fields. clear it_fields.

 

   it_fields-tabname = 'FUPARAREF'.

   it_fields-fieldname = 'FUNCNAME'.

   it_fields-field_obl = 'X'.

   append it_fields. clear it_fields.

 

   call function 'POPUP_GET_VALUES'

        EXPORTING

             popup_title     = 'Function Name'

             start_column    = '1'

             start_row       = '1'

        TABLES

             fields          = it_fields

        EXCEPTIONS

             error_in_fields = 1

             others          = 2.

 

   CHECK SY-SUBRC = 0.

 

 

   read table it_fields index 1.

   SELECT        * FROM  fupararef into table tbl_fupararef

          WHERE  funcname  = it_fields-VALUE.

 

   loop at   tbl_fupararef.

 

     CLEAR: L_LIN1, name, l_lin2.

     CASE tbl_fupararef-PARAMTYPE.

       WHEN 'E' OR 'I'.

         if  tbl_fupararef-STRUCTURE ne space.

           L_LIN1 = 'DATA: &1 TYPE &2 .'.

         else.

           L_LIN1 = 'DATA: &1 .'.

         endif.

 

         refresh: it_fields. clear it_fields.

         CONCATENATE 'L' tbl_fupararef-PARAMETER into it_fields-value

               separated by '_'.

 

         it_fields-tabname = 'DD03L'.

         it_fields-fieldname = 'FIELDNAME'.

         it_fields-field_obl = 'X'.

         append it_fields. clear it_fields.

 

 

         call function 'POPUP_GET_VALUES'

              EXPORTING

                   popup_title     = 'Parameter Name'

                   start_column    = '5'

                   start_row       = '5'

              TABLES

                   fields          = it_fields

              EXCEPTIONS

                   error_in_fields = 1

                   others          = 2.

 

         read table it_fields index 1.

 

 

       WHeN 'T'.

         L_LIN1 = 'DATA: &1 TYPE &2'.

         l_lin2 = 'OCCURS 0 WITH HEADER LINE.'.

         refresh: it_fields. clear it_fields.

         CONCATENATE 'TBL' tbl_fupararef-PARAMETER into

                  it_fields-value

        separated by '_'.

         it_fields-tabname = 'DD03L'.

         it_fields-fieldname = 'FIELDNAME'.

         it_fields-field_obl = 'X'.

         append it_fields. clear it_fields.

 

 

         call function 'POPUP_GET_VALUES'

              EXPORTING

                   popup_title     = 'Internal Table Name'

                   start_column    = '5'

                   start_row       = '5'

              TABLES

                   fields          = it_fields

              EXCEPTIONS

                   error_in_fields = 1

                   others          = 2.

 

         read table it_fields index 1.

 

 

       when others.

         check 1 = 2.

     ENDCASE.

 

     REPLACE '&1' WITH it_fields-value(25) INTO L_LIN1.

     condense L_LIN1.

 

     REPLACE '&2' WITH tbl_fupararef-STRUCTURE(29) INTO L_LIN1.

     condense L_LIN1.

 

     aPPEND L_LIN1 TO BUFFER.

     if L_LIN2 ne space.

       APPEND L_LIN2 TO BUFFER.

     endif.

   ENDloop.

 

 

   CALL FUNCTION 'FUNCTION_STUB_GENERATE'

     EXPORTING

       FUNCNAME                 = tbl_fupararef-funcname

*     IC_MODE                  = 'X'

     TABLES

       SOURCE                   = BUFFER

*   EXCEPTIONS

*     FUNCTION_NOT_EXIST       = 1

*     OTHERS                   = 2

             .

   IF SY-SUBRC <> 0.

* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

   ENDIF.

 

 

  LOOP AT BUFFER INTO WA.

    WRITE:/ WA.

 

    ENDLOOP.

inserting NODE to Hierarchy using FM in sap BW

$
0
0

Hi Gurus,

 

           I have been given the task to add copy hierarchy and than add node against each node at every level. I have use the ABAP standard program by making it z program which is working fine for copying the Hierarchy as it adds all the nodes as well. The standard program is RSTEST_CL_RSSH_HIERARCHY_BASE. Now I want to add  node against each node in the Hierarchy using the FM RSSH_HIEREF_NODE_INSERT BUT even though I have been passing the exact value it is throwing me the dump at its reference variable and than at method SET_INSERTASNEXT.

 

IF any of you have worked on it please help me out. I have also use the Method INSERT_NODE_HIERARCHY of the class CL_RSSH_HIERARCHY_BASE  to insert the node but no use.

Re: SAP Ui5 View Containers

$
0
0

technically a view is a control. Therefore yes. You just should keep in mind that views might bloat your dom.

Re: DTP: DSO to Cube Taking too long time

$
0
0

Try to decrease the package size to 20k, parallel processes up to 3-4. If it is not working.

 

Please refer, SAP Note 1699447.

Re: Car and driver perk value error

$
0
0

I hired employee from 01.04.2016 and in his PY run the value for /127, /3C1 and /3C2 are way too high like 28,800....

 

Please suggest why is it happening.

 

In all my WT I havent marked any cumulation class 27.

 

Thanks,

Megha

Re: at selection screen on same value request for different parameter

$
0
0

Nope, when defining F4 Help using AT SELECTION-SCREEN ONVALUE-REQUEST FOR p_table1, you have to define these individual events.


What you can do is, you can have a single Subroutine for this F4 help which caters to all these f4 help.


For example, lets say you have P_TABLE1, P_TABLE2, P_TABLE3.


You can define as


AT SELECTION-SCREEN ONVALUE-REQUEST FOR p_table1.

perform f4_help using 1.


AT SELECTION-SCREEN ONVALUE-REQUEST FOR p_table2.

perform f4_help using 2.


AT SELECTION-SCREEN ONVALUE-REQUEST FOR p_table3.

perform f4_help using 3.

 

 

form f4_help using pv_fldindex type any.

 

concatenate 'P_TABLE' pv_fldindex INTO w_fldnm.

 

*&- Here based on the field name you can assign conditions for f$ help and use the FM F4IF_INT_TABLE_VALUE_REQUEST.

 

endform.


Re: Tax issue - posting with input and output tax in same posting

$
0
0

Hi Hein,

 

Here system is posting the entry correctly. It is calculating the tax on base amount 220 @10%. However, you can also check the base amount for the tax line items by double click any one of the line item.

 

Regards,

Mukthar

Re: IDM 8.0:Java Heap Space Error in Eclipse Studio

$
0
0

Hello,

i have the same Problem too.

 

Do you have an answer from SAP?

 

Best Regards

Andreas

Re: Aomated Analytics - Error after authentication

$
0
0

Hi,

 

One more thing, can you open a support ticket to report this as a defect? This will help to increase the defect priority.

 

Regards

 

@bdel

Re: How to find out the user exit is implemented

Re: 0PM_PRM_PLCS_2 Data source is always empty

$
0
0

Hi Jay,

 

Thanks for your immediate reply. I have already checked this link and ran the program as per the note. But no data, that's why I have created this discussion.

 

Regards

Senthil A

Viewing all 8594 articles
Browse latest View live




Latest Images