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

Re: cl_gui_alv_grid scrolls to bottom of grid table after line insert

$
0
0

Hi Larry, you have to use the bottom

alv1.jpg

don´t use Insert Row Bottom because its work is insert a row above of the row focus

 

You can exclude the Insert Row bottom using it_toolbar_excluding parameter

 

CALL METHOD g_grid->set_table_for_first_display

        exporting is_layout                  = ps_layout

                      it_toolbar_excluding  = lt_exclude

        changing it_fieldcatalog           = pt_fieldcat

                      it_outtab                  = pt_outtab.

 

And the code of this bottom is

 

APPEND cl_gui_alv_grid=>mc_fc_loc_insert_row TO lt_exclude.

 

I hope this help you

 

Regards

David Carballido


Re: Proxy packaging options in PI

$
0
0

Hi SudarvizhiP,

 

As Raja mentioned, PI does not have this functionality but you can always maintain batch jobs to process Proxy messages at SAP side.

 

Regards,

Nabendu.

Re: Is it possible to join two different Business objects

$
0
0

Yes you can, but not by using standard query from the UI.

 

What you can do is declare a node with the fields that you need, then in the after modify script you'll declare all the logic in order to populate that Advanced List Pane, that way you can do whatever you want for every object, lets say that you need to find all the products that are related to an identified stock, so you can query the identified stock and find by every item if there's a match in the product master data.

Re: Using RSBTONEJOB2 with multiple reports

$
0
0

Hi,

 

try creating a job with 3 steps...1st step that will be running RSBTONEJOB2 and 2nd and 3rd steps as RPTARQPOST and then RPTEXTPT...

 

Please correct me if I misunderstood your problem..

 

Thanks

Naren

Re: PayloadSwapBean not working in Production PI 7.3 AEX

$
0
0

Thanks Bhaskar.

 

But any idea why it is working in DEV and QA then?

RSP SAP Channel ERROR

$
0
0

I'm  trying to configure the RSP and, in the SAP Channel tab, when I click on "Test Connection" after typing my Suser information, it just says: "An error occurred while connecting to sap channel."

 

And give me possibilities: Proxy, SAP Channel is down, No internet connectivity.

 

 

Proxy and Internet connectivity are ok

 

 

How can I fix this?

 

 

 

Best Regards.

Re: Batch Job and Output Type

$
0
0

Dear Mark

 

the relevant OSS note regarding how to prepare SDS distrIbution inculding all steps is available on SAP marketplace. Your topics are part of the OSS note.

 

Please check:

http://scn.sap.com/docs/DOC-41109

There are references to threads in this FORUM which contain the OSS note number

 

C.B.

Re: NFe 10.0 - Problema com lote no cenário BATSR

$
0
0

Bom dia Ricardo,

 

Não sei tecnicamente te guiar, mas você recriou o cenário usando o assistente do BATSR do zero?

Digo, sem aproveitar o que já estava feito?

 

Atenciosamente, Fernando Da Rós


Re: SAP HANA optamized Info Cube.

$
0
0

Hi Vivek,

The BW infocube is an extended star schema, where our fact tables contain DIMID's which connect then to dimension tables and the dimension tables in-turn contain the SID to connect to your master data tables.

A infocube on a BW on HANA system would have the SID's in the fact table itself, there by eliminating the need for a dimension table.

 

Why the infocube was built? HANA stores data in-memory, but the traditional RDBMS that we use does not, so it was prudent having a extended star schema but now since all data is in-memory, we dont need the over head of having a dimension table anymore.

 

Hope this helps.

 

https://cookbook.experiencesaphana.com/bw/modeling-data/bw-modeling-sap-hana/aspects-hana-optimized-infocube/

 

Regards,

Benedict

Re: Field-symbols appending to ITAB

$
0
0

DATA : gt_table  TYPEtable of gt_data.,

      gw_line  like line of gw_line.   

 

FIELD-SYMBOLS: <gfs_line>,<gfs_line1>,
<gfs_dyn_table>
TYPESTANDARDTABLE,
<fs1>.

 

* Assign the new table to field symbol
ASSIGN gt_table->* TO<gfs_dyn_table>.

ASSIGN gw_line->* TO<gfs_line>.

 

loop at itab into wa_tab.

 

ASSIGNCOMPONENT'FIELD1'OFSTRUCTURE<gfs_line> TO<fs1>.

<fs1> = wa_tab-field1.
UNASSIGN <fs1>.

ASSIGNCOMPONENT'FIELD2'OFSTRUCTURE<gfs_line> TO<fs1>.

<fs1> = wa_tab-field2.
UNASSIGN <fs1>.


APPEND<gfs_line> TO<gfs_dyn_table>.


clear : wa_tab.

CLEAR: <gfs_line>.


ENDLOOP.

 


 

Check this link, it explains clearly on how to populate a table using field symbols by looping through another table.

 

http://scn.sap.com/docs/DOC-42525

Re: Material release in DG Master

Re: How is SAP HANA Live content delivered/installed?

$
0
0

Hi Justin,

 

Yes, follow the PDF and SAP Notes informed on it to load tables (if you aren't running Suite on HANA).

There are also other prerequisites like run scripts.

 

The deploy part itself is Import on Studio.

 

Regards, Fernando Da Rós

http://scn.sap.com/thread/3395884

Re: Set data source location

$
0
0

to add to Abhilash's suggestion...vissu bab, do you have businessobjects enterprise or crystal reports server?

 

if you do, you could create a business view with a dynamic data connection. that way you could switch the data foundation to different data sources...good for situations where you're going from dev to testing to production environments.

Re: Retrieve x Amount of records in a internal table

$
0
0

Hi Jannus,

 

You have few options to avoid the time out error.

 

Option 1:

 

Check the Internal tablelt_gty_vendormain value is not initial is the best way to avoid the time out error.

 

Option 2:

 

Check the KNUMH value is not initial in internal tablelt_gty_vendormain. If you have any line with no KNUMH value in internal table lt_gty_vendormain then the select query will try to fetch all the values from the table KONP.

 

Option 3:

 

If you still get the timeout error then add some more field in the where condition like Condition Type, Tax Code, Application which will improve the select query performance.

 

Let me know if you need any more help.

 

Regards,

Saravanan Madhappan


Re: Master Page suddenly moves

$
0
0

Hi Xiang Li,

 

With your help, I think we're getting nearer to the issue.  I hadn't even noticed the P1 subform until now, but when I check it, I can see the same layout settings as you describe.

 

What actually happens when I make the same layout change, is that the X and Y values get set to zero, so the form "jumps" right and downwards by those amounts.  Doesn't that happen for you?

 

I can set the Width and Height of the subform to be the same as the Main Form (roughly A4 size), but after the form has "jumped", I cannot set the X or Y values to anything except 0 cm - I can enter new values, but they are re-set back to zero immediately I move the cursor.

 

I suppose I then have 2 possible questions:

 

1. How can I re-set the X and Y values of the subform, to restore the previous object positions?

- or (and perhaps, better) -

2. Is it somehow possible to select every object on the subform, and move them up and left by the required amounts?

 

Thanks for any further suggestions.

 

Regards,

Dave


Re: Creating Business Objects reports using multiple BW info cubes/queries

$
0
0

Hi Sat,

 

In WebI when you are two queries, you have two options: a) Display data in single report table from both queries or b) Display them separately.

 

For (a) you need a common dimension that can be used to Merge them.

For (b) you don't need any common dimension.

 

As per my understanding, It looks like you need (a) and that requires a common dimension.

 

Hope its clear.

 

Regards,

Irfan Mohammed

Re: WIS 30270 Error

$
0
0

HI George,

 

How did you enable user access to the new connection?

i'm getting that error when a user refreshes the Webi report.

It happens to even the Administrator account.

 

Everything was working fine until I had an issue exporting a Universe. So long story short - I had to create a new Universe, rename and replace my old one on it so it could export.

Then we started having this issue. Any help would be greatly appreciated.

Re: Determine target folder without mapping

$
0
0

Dev,

 

This option is available in Interface determination as well but won't help your requirement.

Adapter module is another way and you can explore that.

 

Ambrish

Re: Determine target folder without mapping

$
0
0

Dev,

 

This option is available in Interface determination as well but won't help your requirement.

Adapter module is another way and you can explore that.

 

Ambrish

Sales Order [Approved]

$
0
0

Hi,

 

A sales order (Approved) has been partially delivered and there is one open line but no stock to deliver, we try to close that single line but there is an error message:

 

 

Document rows cannot be closed concurrently with the other document modifications you have made

[Sales Order - Rows - Row status][line: 12][Message 131-177]

 

Please advice.

Regards

Viewing all 8676 articles
Browse latest View live




Latest Images