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

Re: Getting the data from the table T056A

$
0
0

Hi Nikhil Jain

 

Check table t056a in SE11

 


 

From should be greater value and to should be lower value then only will get data from database.

 

 

Try like this

 

TYPES : BEGIN OF ty_t056a,
         vzskz TYPE t056a-vzskz,
         datab TYPE char10,
         referenz TYPE t056a-referenz,
         END OF ty_t056a.

DATA : output_low TYPE sy-datum,
        output_high TYPE sy-datum,
        it_t056a TYPE TABLE OF ty_t056a,
        wa_t056a TYPE ty_t056a.

DATA: s_low(10TYPE C,
       s_high(10TYPE C.


SELECT-OPTIONS : s_datab FOR sy-datum.


CALL 'DATE_CONV_INT_TO_EXT'
     ID 'DATINT' FIELD s_datab-low
     ID 'DATEXT' FIELD s_low.


CALL 'DATE_CONV_INT_TO_EXT'
     ID 'DATINT' FIELD s_datab-high
     ID 'DATEXT' FIELD s_high.



CALL FUNCTION 'CONVERSION_EXIT_INVDT_INPUT'
   EXPORTING
     input  = s_low
   IMPORTING
     output = output_low.

CALL FUNCTION 'CONVERSION_EXIT_INVDT_INPUT'
   EXPORTING
     input  = s_high
   IMPORTING
     output = output_high.

SELECT vzskz
        datab
        referenz
        FROM t056a INTO TABLE it_t056a WHERE datab BETWEEN output_high AND output_low.

Loop at it_t056a into wa_t056a.

CALL FUNCTION 'CONVERSION_EXIT_INVDT_OUTPUT'
   EXPORTING
     input         = wa_t056a-datab
  IMPORTING
    OUTPUT        = wa_t056a-datab.

modify it_t056a from wa_t056a TRANSPORTING datab.
clear wa_t056a .
endloop.

Loop at it_t056a into wa_t056a.
Write: / wa_t056a-vzskz, wa_t056a-datab, wa_t056a-referenz.
endloop.

 

 



Re: Need to select remittance advice to vendors

$
0
0

Hi Ravish,

 

You need analyse your business requirement. Normally business required remittance advices based on their different types of vendors like one time vendors, withholding tax vendors, cheque payment vendors, BACS payment vendors etc.. You need to ask business about their requirement. If you have different group of vendors then you needed the different format of the output with the same script or different scripts.

 

Regards,

prasad

Re: Problem in BADI IF_EX_AC_DOCUMENT~CHANGE_AFTER_CHECK for MR8M

$
0
0

Hi

 

Have you checked the value for ACCIT-OBZEI?

 

Regards

 

Eduardo

Transfer rule question

$
0
0

Hi

 

We are using 3.x transfer rules for our 0PROFIT_CTR attribute data load.

 

we are bringing one new field from ECC to BW system.

 

From ECC we are getting the field as 201RXX which is having 13 characteristics length.

 

In BW in trasnfer rules we need to map this field to the 2 info objects.

 

To the one info object we need to pass first 3 letters of the field we are getting in above case we should pass 201.

 

To another object we need to pass remaining all letters of the the field in above case we should pass RXX.

 

Please share your thoughts how we can easily achieve this.

 

Thanks

Vijay

Re: Print payment advice in F110

$
0
0

ensure that your payment run parameters and the variant for RFFOAVIS are the same.

Re: COPA profitabilty Analysis Cube Issue

$
0
0

Hi

 

I suggest you split the data into different cubes. We use one for actual and prev. Year data and one cube for the older years. Create a multiprovider on top and your report performance will increase dramatically. You can in addition also use the partition was Ram mentioned.

Lookup in this document how you use rsmultiprovhint that your report automatically queries the right cube depending on the users input.

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/751be690-0201-0010-5e80-f4f92fb4e4ab?overridelayout=true

 

Hope it helps

Martin

Re: Can not log on SLD

$
0
0

Hi,

I just tried, but can not solve.

Any ideas?

Re: 2 seperate alv grid in total different environment, why display the same thing?

$
0
0

@Aiolos, thank you for the reply.

Here is the code for initializing the container, splitter, 1st alv, the 2nd alv is created in the same way just using different instance name.

 

 

* Create splitter container

  CREATE OBJECT gr_container_sub_s2i

    EXPORTING

      container_name = gd_alvsub_s2i.



  CHECK NOT gr_container_sub_s2i IS INITIAL.

    CREATE OBJECT gr_splitter_s2i

      EXPORTING

        link_dynnr = '0702'

        link_repid = 'SAPLAMDPS2I'

        parent     = gr_container_sub_s2i

        rows       = 2

        columns    = 1

      EXCEPTIONS

        OTHERS     = 1.

 

  CALL METHOD gr_splitter_s2i->get_container

    EXPORTING

      row       = 1

      column    = 1

    RECEIVING

      container = gr_container_***_s2i.



  CALL METHOD gr_splitter_s2i->get_container

    EXPORTING

      row       = 2

      column    = 1

    RECEIVING

      container = gr_container_itm_s2i.

 

 

 

CREATE OBJECT gr_alvgrid_itm_s2i

    EXPORTING

      i_parent = gr_container_itm_s2i.


Re: Profit center 1000/13001000 does not exist?

$
0
0

Hello,

Keep an eye at the profit center number. you may have to add leading zeros.

 

 

Thanks

Katrice

Re: Error while filling Setup Table

$
0
0

Hi Venkat,

Please make sure that you transfer exchange rates periodically. The exchange rates are written in table TCURR, so you can directly check that table for missing entries...

Hoep it gives an idea

Yasemin...

Re: Can not log on SLD

$
0
0

Hi,

 

Please follow administrator guide for 9.0 version for complete installation. You can download from SAP Business one customer portal under Documentation Tab.

 

Thanks & Regards,

Nagarajan

Re: ABAP Runtime error : READ_REPORT_LINE_TOO_LONG

$
0
0

Hi

 

Take SE38->change

 

Goto utilities -> Settings-> select option Downwards-Comp Line Length(72)

 

and then activate the Program.

 

Regards

Sajid

Re: Types of SAP Mobile Technologies

$
0
0

Hi Jitendra,

 

Thank you very much for reply.

 

I need small clarification about SAPUI5 with PhoneGap and SAPUI5 with Netweaver gateway, what exactly this combination means.

 

Thanks & Regards,

Chandu V

Re: CRM CO Integration-Planned cost not flowing to Internal order

$
0
0

Hi,

The problem is resolved. We need to maintain Costing variant for this.

regards,

Makrand

Re: Upgrade to Version 9 SAP Business One

$
0
0

Hi Wess,

 

 

Could you specify the SAP B1 version to upgrade ?

 

 

JM


Re: Subcontracting process issue- Child Parts of BOM are not picked into the GR

$
0
0

Manoj,

 

Please try with + Quantity.

 

Also do check all points i have mentioned before work on the GR process.

 

regards

manu

Re: COPA profitabilty Analysis Cube Issue

Re: Variables in COPA for Previous years

$
0
0

Hi

 

 

Whenever you use a text variable, you should go to Extras > Variable def

 

Choose your text variable in the list, double click and choose replacement type as "Automatic".. Then it wont appear on seleciton screen

 

Try this

 

Br, Ajay M

Re: WCEM 2.0 How to force user to login before navigate

$
0
0

Hi Benoît,

 

yes, this is normal. JSF evaluates each faces-config independently of the module concept.

 

Best regards

 

René

PR Release retrigger

$
0
0

Dear All,

 

We have only one PR release strategy in our client place.

Even if the PR value is changed to lower yalue from original value or changed line items to the original value, the release strategy need to be retriggered.

The above requied to stop the malpractice.

Kindly give your expert advice.

 

Regards

Viewing all 8902 articles
Browse latest View live




Latest Images