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

Re: VB.NET2010, MySQL and Crystal Report XML Datasource Deployment Problem

$
0
0

Sir @Ludek, it doesn't point to the XML file in its current directory. It points to the original project location that's why It doesn't generate the expected result. I think I have to change the location of the datasource programatically or upon loading.


Re: SAP GUI Appearance Changes After VBScript Manipulation

$
0
0

At the end of your script, did you clear the object variables by assigning it to Nothing? i.e.

 

set session = nothing

set connection = nothing

 

etc?

Re: How to Use AET and manage rapid applications

$
0
0

Hi Olivier,

 

Basically my requirement is to have a form with 1:1 to  BTADMINH and the to add the roles for the user given in the form.So this table view wouild have 1:n RELATIONSHIP to BTADMINH and above form as well.

 

Thanks and Regards,

sivaramakrishna

Re: Lite Optimize very slow after Clear Package run

$
0
0

Hi,

 

Compression always depends on the size of the request which you trying to compress.

After running clear package how many request generated in the back end?

How big is your request and which version of EPM add-in and CPMBPC?

 

 

Thanks,

Raju

Re: Process Order release rejection

$
0
0

Dear Ibrahim,

 

Based on the error message which is shown during release, I guess the characteristics of the

 

resource(classification) do not meet the selection criteria.

 

The procedure to rectify the same is Change the resource in the operation and the function "resource

 

Selection"considers the selection conditions.

 

Check this and come back.

 

Regards

Mangalraj.S

Re: Port to be open for Incoming mails in SAP

$
0
0

Hello Sir,

 

Parameters  icm/server_port_0 & icm/server_port_1 is already configured for HTTP & HTTPS.


Can we maintain below parameter for incoming mails:-

 

icm/server_port_2 ->  PROT=SMTP,PORT=25$$$,EXTBIND=1.

 

how would we decide the format for Port in above parameter OR 25$$$ is ok....

 

 

Thanks

Sumit

Re: MCNB and RSA3 showing wrong record count for 2LIS_03_BX

$
0
0

Hi Rakesh,

 

check the data in SE16 -using setup table MC03BX0SETUP

other wise use MCNB , NPRT, and RSA3.

 

delete the set up table data and fill the setup table using OLI*BW then check se11 and NPRT.

 

Thanks,

Phani.

Re: Publish a html page in B1if tomcat server

$
0
0

Hi Alvaro,

 

If you want to retrieving data from your website to B1i via http post, you can use [call http] or [call web service] atom in step processing.

 

For reference, you can check Help -> Online Help -> 'HTTP Call Atom ' or 'Web Service'.

 

HTH,

 

Kind Regards,

Qiaoli


Re: BEX Query issue

$
0
0

here is the code where i had same scenario. In my Bex i had variables ZMMCREGGRP, 0S_FPER, ZCNOGPMGT, ZVESGMGT, DATRANGE

             and fiscal variant as L2.

 

So read all those variables input in the code then i passed it select query, I got the data into internal table, then i used that data for the Variable processing...

 

You can use same approach...

 

RANGES: WA_RGNGRP FOR W_TEMP,

        WA_FISCPER FOR W_TEMP,

        WA_NOGPMN FOR W_TEMP,

        WA_ESGMGT FOR W_TEMP,

        WA_CLRDATE FOR W_TEMP.

DATA: wcnt(10).

DATA: BEGIN OF ITAB_WAPT OCCURS 0,

      FISCPER TYPE /BI0/OIFISCPER,

      ZCREDITOR TYPE /BI0/OICREDITOR,

      END OF ITAB_WAPT.

 

 

IF i_s_rkb1d-compid = 'BEX QUERY NAME' AND I_STEP = '2'.

*  Reading the selection screen

     READ TABLE i_t_var_range INTO wa_i_t_var_range WITH KEY vnam = 'ZMMCREGGRP'. "Region grp

       if sy-subrc  eq 0.

        WA_RGNGRP-LOW = wa_i_t_var_range-LOW.

        WA_RGNGRP-HIGH = wa_i_t_var_range-HIGH.

        WA_RGNGRP-SIGN = wa_i_t_var_range-SIGN.

        WA_RGNGRP-OPTION = wa_i_t_var_range-OPT.

        APPEND WA_RGNGRP.

        clear wa_i_t_var_range.

       endif.

      READ TABLE i_t_var_range INTO wa_i_t_var_range WITH KEY vnam = '0S_FPER'. "Fiscper

       if sy-subrc  eq 0.

        WA_FISCPER-LOW = wa_i_t_var_range-LOW.

        WA_FISCPER-SIGN = wa_i_t_var_range-SIGN.

        WA_FISCPER-OPTION = wa_i_t_var_range-OPT.

        APPEND WA_FISCPER.

        clear wa_i_t_var_range.

       endif.

       READ TABLE i_t_var_range INTO wa_i_t_var_range WITH KEY vnam = 'ZCNOGPMGT'. "Non GP Managed

       if sy-subrc  eq 0.

        WA_NOGPMN-LOW = wa_i_t_var_range-LOW.

        WA_NOGPMN-HIGH = wa_i_t_var_range-HIGH.

        WA_NOGPMN-SIGN = wa_i_t_var_range-SIGN.

        WA_NOGPMN-OPTION = wa_i_t_var_range-OPT.

        APPEND WA_NOGPMN.

        clear wa_i_t_var_range.

       endif.

       READ TABLE i_t_var_range INTO wa_i_t_var_range WITH KEY vnam = 'ZVESGMGT'. "ESG Managed

       if sy-subrc  eq 0.

        WA_ESGMGT-LOW = wa_i_t_var_range-LOW.

        WA_ESGMGT-HIGH = wa_i_t_var_range-HIGH.

        WA_ESGMGT-SIGN = wa_i_t_var_range-SIGN.

        WA_ESGMGT-OPTION = wa_i_t_var_range-OPT.

        APPEND WA_ESGMGT.

        clear wa_i_t_var_range.

       endif.

       READ TABLE i_t_var_range INTO wa_i_t_var_range WITH KEY vnam = 'DATRANGE'. "Clearing Date

       if sy-subrc  eq 0.

        WA_CLRDATE-LOW = wa_i_t_var_range-LOW.

        WA_CLRDATE-HIGH = wa_i_t_var_range-HIGH.

        WA_CLRDATE-SIGN = wa_i_t_var_range-SIGN.

        WA_CLRDATE-OPTION = wa_i_t_var_range-OPT.

        APPEND WA_CLRDATE.

        clear wa_i_t_var_range.

       endif.

 

 

SELECT FISCPER CREDITOR FROM /BIC/A<DSO>00 into TABLE ITAB_WAPT

                         WHERE FISCVARNT = 'L2'

                         AND   /BIC/ZCREGGRP IN WA_RGNGRP

                         AND FISCPER IN WA_FISCPER

                         AND /BIC/ZCNOGPMN IN WA_NOGPMN

                         AND /BIC/ZCESGMGT IN WA_ESGMGT

                         AND CLEAR_DATE IN WA_CLRDATE.

 

 

SORT ITAB_WAPT BY ZCREDITOR DESCENDING.

DELETE ADJACENT DUPLICATES FROM ITAB_WAPT COMPARING ZCREDITOR.

 

 

READ TABLE ITAB_WAPT.

WCNT = SY-TFILL.

 

 

WCNT = WCNT - 20.

CONDENSE WCNT.

 

 

IF I_VNAM = 'ZVARBTMN'.

  L_S_RANGE-LOW = WCNT.

  APPEND L_S_RANGE TO E_T_RANGE.

  CLEAR L_S_RANGE.

ENDIF.

ENDIF.

HR renwal ess UI5 workfeeds

$
0
0

hi

 

has any one configured the workfeeds which is part of the ess UI5 application.

 

PLease let us know if any one has successfully configured the same.

 

I have done the subscription key and subscribed to the feeds as described in the sap help , still i get a blank lane in the ESS page for workfeeds.

 

Regards

sameer

Re: caller 90 contains an error message.do not have authorization to extract from datasource 80xxxx,component DM

$
0
0

Hi,

 

check the authorization using SU53.

missing the authorization for S_RO_OSOA and take basis help.

 

Thanks,

Phani.

Re: custom function module for custom idoc

Re: Create .csv File

$
0
0

Many thanks Peter for your help.

Re: EPMMemberProperty not refreshing the Property value

$
0
0

Hi,

 

It should show after  Refreshed Metadata for current connection if master data correctly updated. Can you clear cache using UJA_REFRESH_DIM_CACHE and try again.

 

Thanks,

Raju

Re: SRM Invoice Transfer to ERP, Idoc inbound error 51

$
0
0

Thank for, Vinita.

 

I already setup distribution model by BD64 and partner profile by WE20 in both system (outbound in SRM and inbound in ERP). Everything for outbound Idoc is green light in SRM (sending successfully with status 03).

 

No P-card is used and it is classic scenario with SRM7.0 and ECC6.

I attach a picture that is the inbound setting for partner profile in ERP by WE20.

Screen Shot 2014-02-19 at 8.24.07 AM.png

I used process code IV01 for setting up message type BBPIV,  and the function module is IDOC_INPUT_BBP_IV.

 

Anything correct or not ?

 

Thanks

Regards

Jeff


Re: SRM Invoice Transfer to ERP, Idoc inbound error 51

$
0
0

Thanks, Ivy.

 

I check the error message, but I cannot find anything valuable. the message just showing Communication Failure.

Screen Shot 2014-02-19 at 8.51.12 AM.png

Please give me some idea how to go further.

 

Thanks again

 

Jeff

Re: KE80 report add Cloumn for %

$
0
0

Sorry, I don't understand what you said.

Can you explain it through example picture ?

F4 Dropdown in SALV report

$
0
0

Hi ,

 

My report is simple. I am selecting data from joining two tables. After that I am showing data using SALV Objects. But one of the field in the report show value in F4 or dropdown list. For instance, fields like RFBSK, ERDAT and FKART. I have defined my internal table using same data dictionary field used in select statement. Following is the methods used after selecting data into table ts_output. Only posting status (RFBSK) show dropdown button but clicking on button does not show all defined value ranges.

 

  cl_salv_table=>factory( IMPORTING r_salv_table = gr_table
                           CHANGING t_table = ts_output ).

   gr_functions = gr_table->get_functions( ).
   gr_functions->set_all( abap_true ).

   gr_columns = gr_table->get_columns( ).
   gr_columns->set_optimize( abap_true ).

   gr_display = gr_table->get_display_settings( ).
   gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
   gr_display->set_list_header( 'Croatia - Reporting on Zero invoices' ).

   gr_table->display( ).


Any Idea?


Thanks and Best Regards,


Re: BEX Query issue

$
0
0

thanks but what are you passing back to the query? can you tell me your scenario please?

Re: Variant name and Program Variant

$
0
0

Hello Riyaz,

 

Process Variant, Program Variant, Transaction Variant are different types variants which I am aware of. Following is how I understand those -

 

Process Variant are seen when we work on creation process chain having different process steps.  Process variants helps in creating steps in the process chain. Process variant internally may include particular program variant.

 

Using transaction SHD0 we can create a Transaction Variant against the original transaction code. This allows you to alter transaction screen layout being shown by the standard transaction. 

 

Most important, Whenever you are executing an ABAP Program having a some selection criteria to specify the input values, you can create program variant to save this selection criteria.  This is called as Program Variant. Table Name :  VARID  shows you the existing variants for the various programs. Besides table VARIS and VARIT contain various information about the variants. Also Program Variants are transportable. Transports can be created using report : RSTRANSP.

 

Hope this will help.

 

Thank you

Satish Waghmare

Viewing all 8594 articles
Browse latest View live




Latest Images