Quantcast
Channel: SCN : All Content - All Communities
Viewing all 8150 articles
Browse latest View live

Exception while exporting the CrystalReport to PDF/Excel/Word

$
0
0

My .NET application works fine when I use the CrystalReportViewer to view the generated reports and later export to pdf/excel/word.
However it throws me this runtime exception when I try to export the report programmatically to one of the formats as mentioned above.

 

The code basically tries to export the crystal report to a certain format

 

For ex:

rptLayout.SetDataSource(dataset);

rptLayout.ExportToDisk(ExportFormatType.PortableDocFormat, "C:\\TEST.pdf");

 

 

 

Method not found: 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag CrystalDecisions.ReportAppServer.ReportDefModel.ISCRExportOptions.get_ExportOptionsEx()'.

 

A little bit of search on the web yielded me no proper response except to install latest CR Runtime.

 

My dev pc configuration

 

  • IDE is Visual Studio 2010
  • Programming language as C# .NET 4.0
  • Version of SAP Crystal Reports for Visual Studio : 13.0.14.1720

 

Can anyone at SAP let me know what could be the possible reason for this issue

 

This issue needs to be fixed on priority in our application

 

Thanks

Srivatsa


How we can find stock of the months as per the purchasing group?

$
0
0

Any T-codes or Tables we find the inventory or stock of the months as per the purchasing group?

How to convert a front end BDC recording code(generated via SHDB) into a modular Code to be run in the background using 'Call Transaction' with error Log

$
0
0

For creating a batch upload program we use BDC recording in SAP carried out via transaction code 'SHDB'. We can ask a Functional Consultant of the specific module to create a BDC recording for a given transaction along with the fields that are required for batch upload. Once a recording is created we can generate a macro by clicking the [] Program button to generate the macro code for the given recording in SHDB. We can also run the macro recording in different modes as it was created originally by clicking the Process[] button in SHDB. We will follow steps from when the BDC recording macro has been created and saved as a program,with an option of 'Transfer from Recording' radio button selected in the Field Contents

                             

from the pop-up menu.

 

In our case,it will be a BDC recording for Tcode = ABAVN, which is used for directly retiring an Asset by Scrapping it,which is used in SAP FI module.

 

To have a look at the BDC recording macro code generated,refer to the code below:

__________________________________________________________________________________________________________________________

    [BDC Macro Code for Transaction ABAVN ]

 

report ZASSET_SCRAP_BDC
no standard page heading line-size 255.

include bdcrecx1.

start-of-selection.

perform open_group.

perform bdc_dynpro      using 'SAPLAMDP' '0100'.
perform bdc_field      using 'BDC_OKCODE'
                         
'=TAB02'.
perform bdc_field      using 'RAIFP2-ANLN1'
                           
'1010000017'.
perform bdc_field      using 'RAIFP2-ANLN2'
                         
'0'.
perform bdc_field      using 'RAIFP1-BLDAT'   
                           
'13.10.2015'.
perform bdc_field      using 'RAIFP1-BUDAT'
                         
'13.10.2015'.
perform bdc_field      using 'RAIFP1-BZDAT'
                         
'13.10.2015'.
perform bdc_field      using 'BDC_CURSOR'   
                         
'RAIFP2-SGTXT'.
perform bdc_field      using 'RAIFP2-SGTXT'
                         
'Asset Scrap'.
perform bdc_dynpro      using 'SAPLAMDP' '0100'.
perform bdc_field      using 'BDC_OKCODE'
                         
'=SHWD'.
perform bdc_field      using 'RAIFP2-ANLN1'   
                         
'1010000017'.
perform bdc_field      using 'RAIFP2-ANLN2'
                         
'0'.
perform bdc_field      using 'RAIFP2-MONAT'
                           
'09'.
perform bdc_field      using 'RAIFP1-BLART'
                           
'AA'.
perform bdc_field      using 'BDC_CURSOR'
                         
'RAIFP1-XBLNR'.
perform bdc_field      using 'RAIFP1-XBLNR'   
                         
'ASSET SCRAP'.
perform bdc_dynpro      using 'SAPMSSY0' '0120'.
perform bdc_field      using 'BDC_OKCODE'
                         
'=BUCH'.
perform bdc_transaction using 'ABAVN'.

perform close_group.

__________________________________________________________________________________________________________________________


Here is brief description of the elements of the BDC recording Macro Code used in the code above:


> All the fields called in the BDC recording start with the the following fields e.g:  'perform bdc_fieldusing 'RAIFP1-BLART'' followed by a value which could either be a constant or a data object etc. as could be seen from the code above.


> The ones with the text 'BDC_CURSOR' follow up with the name of the field where the cursor is to be placed on the screen.

e.g:


perform bdc_field using 'BDC_CURSOR'
'RAIFP2-SGTXT'.


> When a specific screen or tab is called on a screen,it is usually followed with a  Module Pool Name and Screen No. e.g:


perform bdc_dynpro      using 'SAPLAMDP' '0100'.
perform bdc_field      using 'BDC_OKCODE'
'=TAB02'.


Here BDC_OKCODE is the ok code or an identifier for identifying which UI element  in Dynpro screen was clicked followed by the identifier id. For those of you who have done dynpro programming know the system constant sy-ucomm holds this value at runtime.


> Finally the transaction code for which this macro was generated is called using 'BDC_TRANSACTION'. e.g:


perform bdc_transaction using 'ABAVN'.


________


With the BDC recording out of the way,we can now concentrate on how  to convert it for Call Transaction Mechanism. The  best way to map fields is to create a single structure in ABAP for holding all values that are to be passed for all fields in the Macro recording discussed before.

e.g:

 

DATA: BEGIN OF s_assetscrap,
        bukrs type ANLA-BUKRS,"Company Code
        ANLN1 type anla-anln1,"Asset No
        ANLN2 type ANLA-ANLN2,"Sub Asset No
        BLDAT type RAIFP1-BLDAT,"Document Date
        budat type RAIFP1-BUDAT,"Posting Date
        BZDAT type RAIFP1-BZDAT,"Asset Value Date
        SGTXT type RAIFP2-SGTXT,"Text

        monat type RAIFP2-MONAT,"Posting Period
        BLART type RAIFP1-BLART,"Document Type
        XBLNR type RAIFP1-XBLNR,"Reference
      END OF s_assetscrap.


We now need to add in each of the BDC recording code lines to an internal table that will eventually be passed as a parameter when using the 'Call Transaction' construct. It will be based on 5 parameters as is required when calling a bdc code in Call Transaction construct based on the standard structure named 'BDCDATA'. These fields are:


  1. PROGRAM(Module Pool Name)
  2. DYNPRO(Screen No for the Dynpro)
  3. DYNBEGIN(BDC screen start)
  4. FNAM(Field name on the Screen)
  5. FVAL(Field value to be used)

 

Based on these fields,this is how we are going to convert it.


e.g:


"Original Code as provided in BDC recording macro


perform bdc_dynpro      using 'SAPLAMDP' '0100'.


"Code Converted for BDC recording called in Call Transaction construct


wa_bdcdata-program = 'SAPLAMDP'.

wa_bdcdata-dynpro = '0100'.

wa_bdcdata-dynbegin = 'X'.

wa_bdcdata-fnam = ''.

wa_bdcdata-fval = ''.


Compare the fields with the code above to get a better idea about value passed here.


Here is the complete code converted to the format as required for Call Transaction construct line by line.


_________[Each of the 19 Lines converted to Call Transaction Format based on BDCDATA structure]


> Add multiple records for this bdc recording in one go as well.


DATA:

     it_bdcdata type standard table of BDCDATA,

     wa_bdcdata like line of it_bdcdata.


"1

wa_bdcdata-program = 'SAPLAMDP'.

wa_bdcdata-dynpro = '0100'.

wa_bdcdata-dynbegin = 'X'.

wa_bdcdata-fnam = ''.

wa_bdcdata-fval = ''.


append wa_bdcdata it_bdcdata.

clear wa_bdcdata.


"...and so on. Only shortened code is shown here for illustrative purposes.


[Refer to the complete code in the attached text file named 'BDC_Recording_Code_Conversion_Code_Fragment.txt.zip'].


_________

 

 

The final element of transaction code  will be passed when using the final Call Transaction construct for uploading or posting .


dyn_begin = 'X' indicates that a screen is called at this point,therefore the module pool name and screen no is called here and for the rest field name and value pairs are passed in.


Here is how the final Call Transaction code will be called for posting this Asset Retirement via scrap:


DATA:

     it_msg type standard table of bdcmsgcoll."This will hold all Messages


  CALL TRANSACTION 'ABAVN' USING it_bdcdata

    MODE 'N'

    UPDATE 'S'

    MESSAGES INTO it_msg.

 

Here it_bdcdata is the BDC recording format converted for compatibility with BDC Recording.

     Mode   = N[For Running in the Background]

               [All Modes in BDC recording are supported like

                'E'(Errors),'A'(All Screens)]

     Update = S[Synchronous]

     it_msg = Holds all error messages and successful messages


For Logging,Internal table it_msg can be looped through for finding successful postings(msgtyp = 'S') and failed postings(msgtyp = 'F') of uploads via call transaction construct. e.g for successful messages:


LOOP AT it_msg INTO wa_msg WHERE msgtyp EQ 'S'.
CALL FUNCTION 'MESSAGE_TEXT_BUILD'
EXPORTING
msgid   = wa_msg-msgid
msgnr   = wa_msg-msgnr
msgv1   = wa_msg-msgv1
msgv2   = wa_msg-msgv2
msgv3   = wa_msg-msgv3
msgv4   = wa_msg-msgv4
IMPORTING
message_text_output = wa_msg_all.

 

ENDLOOP.


Here the data object 'wa_msg_all' complete error message in one line, where as individual components are also store in one of the structures like wa_msg-msgid(Message Id number),wa_msg-msgnr(Message No),wa_msg-msgv1 to wa_msg-msgv4(contains error or successful messages with description).


Using this code mechanism through Call Transaction we can convert BDC recordings into portable executable code which can be embedded especially if you are working on a selective posting program using an interactive ALV report for selecting records and posting them.



Legal

Fahad Javed's Copyrights

All Screen Shots taken,Fahad Javed's Logo are copyrights © 2010-2015 Fahad Javed. All rights reserved.

All the material written is a labour of hardwork carried out by the author. Kindly don't copy this material for commercial purposes. If a link is provided do provide the accredition to the author as follows:'© 2010-2015 Fahad Javed. All rights reserved.'.

All the terms used are copyrights of SAP SE  © 2015 SAP SE. All rights reserved. See the section 'SAP - Copyrights and Trademarks' for further details.

SAP - Copyrights and Trademarks

© 2015 SAP SE. All rights reserved.

For Details on SAP and 3rd Party Trademarks,refer to the following link:

http://www.sap.com/corporate-en/about/legal/copyright/index.html

Consolidar 2 servers (SAP BO) en 1 único servidor potenciado

$
0
0

Hola,

hasta hace 3 meses, solíamos tener el SAP BO en 2 servidores físicos (uno con la Base de Datos y otro con el servidor de SAP BO) con limitada RAM y Procesador, cada uno.


Ahora, tenemos ambos servidores como maquinas virtuales corriendo sobre vmware esxi 5.5.


En nuestro nuevo ambiente tenemos el 'poder' de agregar mucha RAM y Procesador! Así es que quisieramos unificar o cosolidar ambos servidores en 1 unica maquina virtual con mucha RAM y Procesador.


Nuestra versión de SAP Business One es la 9.1.17 corriendo sobre Windows 2008 R2 server.

 

Y nuestra Base de Datos es un MS SQL Server 2012 R2 que corre sobre un servidor Windows 2008 R2.

 

Nuestro técnico de Infrasestructura de TI dice que debería ser fácil realizar esta labor, y que solo bastaría con instalar el SQL Server 2012 R2 en el mismo servidor que hoy tiene instalado el servidor de SAP BO y luego importar las bases de datos ('Restore')

 

Para mi, esto suena demasiado simple, lo que me provoca algo de desconfianza, es por eso, que decidí preguntar aquí, quizás alguien me pueda sugerir algo que no estemos considerando.

 

Gracias a todos.

How to supply Tax Data to SD_SALESDOCUMENT_CREATE FM.

$
0
0

Hi ;

 

For CPD customer (One Time Customer) I am creating a Debit Memo..

I have no problem with FM and creation . They are all working well..

 

But I do not know how to  give the STCEG value given below to the function module so that it will appear  in VA03 partners (WE) . at VAT No area.

cpd.JPG

 

Thanks in advance.

 

Erk

HANA Query Optimizer seems not working with IQ Virtual Table through SDA

$
0
0

Hi experts,

I am working in a project with SAP HANA and hot-cold data management where cold data are stored in Sybase IQ. Hana recognizes IQ tables through Smart Data Access.

 

1. I wrapped my virtual table "Z_DS_BUDGET_SDA" in a Calculation View "Z_DS_BUDGET_COLD"

2. I set the engine for the wrapper calculation to "SQL Engine"

3. I added the wrapper calculation to an existing calculation view to manage both hot and cold data together

 

The problem is the following: even without retrieving any data from cold table in IQ, the HANA Query Optimizer seems no longer working when I add the "Z_DS_BUDGET_COLD" wrapper calculation and the execution time of the main query goes from about 3 seconds to 1 minute and 40 seconds

 

We are currently using SAP HANA SP09

 

Based on what I found on SDN, I tried to run an "explain plan" for both cases with the following results:

- Before adding virtual table to the CV I have an optimized plan with 231 steps

- After adding the virtual table the plan contains 678 steps

 

I also tried to create statistics for the virtual table to help the index engine working properly but it doesn't seems to change the output

CREATE STATISTICS ON "ZSAP_HBI"."Z_DS_BUDGET_SDA" TYPE HISTOGRAM;

 

 

Do you have any suggestion?

Thanks

Inline declaration inside loop and performance

$
0
0

I have seen SAP ABAP support inline declaration after release ABAP 7.4. I have declare the inline statement inside the loop loop at it_data. data(lv_val) = 5. endloop. In another example i have declared the statement without inline declaration in side loop. data(ls_val) = 5. loop at it_data. lv_val = 5 . endloop. This is very simple example but in case of declaration of internal table inside loop verses outside inside. I don't know how the inline declaration internally work in ABAP 7.4 Which will give better performance ?

2 WTax Code in 1 A/P invoice

$
0
0

Hello,

 

Can we have 2 Withholding tax code in 1 A/P Invoice. Actually one of my client have invoice where 2% and 10% both Wtax Code is applicable in one single A/P invoice.

 

Client version is 8.82.

 

Please suggest.

 

Thanks,

 

Harshal Makwana


when to use IBP and BPC

$
0
0

hi gurus:

 

I ve been reading some articles about IBP and i d like to confirm with you that BPC (business rules, script logics, bpfs,models) is gonna be used just to implement legal consolidation projects and financial planning projects will be implemented using IBP.

 

regards

 

mah

How to install Development Infrastructure on fresh NW 7.40.8.0 server

$
0
0

Hello all,

I have a fresh install of NW 7.40.8.0 and unfortunately the "Development Infrastructure" was not checked during the installation process. I have searched the forum as well as Google to find out how to install this, unfortunately many of the articles I have found are 5-10 years old. Not very helpful.

If someone could point me to the correct SCA files so I can use the Software Update Manager (SUM) to install I would appreciate it.

Thanks,
Mike

Integrating 0COSTELMNT and 0GL_ACCOUNT into ACCOUNT DIMENSION (SAP BPC 10.0 NW)

$
0
0

Hello experts!

 

I am searching for a solution regarding the possibility to load 0GLACCOUNT and 0COSTELMNT Master Data into the Account dimension.

 

Actually we need 100% of the 0GL_ACCOUNT members and additionally the members of 0COSTELMNT of 4 CO_AREAs are necessary. So there are equal members within 0COSTELMNT but in different CO_AREAs (and not every account is in all of the 4 CO_AREAs). And additionally you will find some of the members of 0COSTELMNT in 0GL_ACCOUNT.

 

So we are loading the data of 0COSTELMNT to get the data delta between 0GL_ACCOUNT and 0COSTELMNT also into our ACCOUNT dimension via the transformation file / conversion file of the Data Manager.

To be able to use the hierarchies of 0COSTELMNT (which are also being loaded into BPC)

 

This is quite tricky as we would like to consolidate the members of 0COSTELMNT who are the same and regardsless the CO_AREA.

 

So e.g. reduce the records 0COSTELMNT 0070020000CO_AREA 0001 and 0COSTELMNT 0070020000CO_AREA 0002 to 0COSTELMNT 0070020000 and load this member into the ACCOUNT dimension if it is not existing there already (because of the 0GL_ACCOUNT load before).

 

My first approaches ended up in having duplicate member IDs as I couldn't consolidate. And probably I could do a few single transformations and load each CO_AREA in a single transformation and overwrite, overwrite and overwrite until all necessary members of 0COSTELMNT and 0GL_ACCOUNT are included. But this solution doesn't sounds very professional.

 


Does somebody has an experience in doing this and some kind of good or best practice?

 

Thanks in advance!
Max

Is it possible to dynamically change the length of a SAP field?

$
0
0

Hi,

 

is it possible to change the length of a std SAP field on a std SAP Screen? without modification?

 

For example the below image shows the screen 300 of std SAP program SAPLIPW1. On this screen we have the serial number field which has underlying data element and domain GERNR.

 

Currently the serial number field is 18 chars long. Is it possible to dynamically change it to 30 chars long only for display purpose?

serial_number.png

 

The reason for this change is:

1. We want the user to enter a external serial number on the input field and this external number can be  upto 30 char long.

2. We will then enhance the conversion exit tied to the domain GERNR to convert the entered 30 char long external serial number to an internal number of 18 char long.

 

So we simply want to change the length on the above screen and of course we are trying to achieve without modification.

 

Any suggestions?

 

I tried to use the LOOP at screen and change he field LENGTH but it wont make any difference. Any idea if it is possible at all?

 

Thanks

How to Combine ASCS and CI into one Instance No.

$
0
0

Hi All,

 

We have performed ABAP System Copy using SWPM it Split ASCS (Message Server, 01) and CI (Primary Application Server 00).

 

Is there any way to combine both ASCS and CI into one instance no 00.

 

 

Thank you,

Raam.

Freight without Tax customer Invoice

$
0
0

Hi Experts,

 

Can we have freight without tax in customer Invoice.

In pricing tab customer Invoice we can have additional charges like freight, surcharge etc. system calculate tax on all component,

We want freight without tax, is it possible, is there any other work around for the same.

 

Pls. advice

 

Regards

Kamlesh Vagal

Relation between RBKP/RSEG and BSEG/BSAK tables ?

$
0
0

Hi Guys,

 

We have a requirement to fetch the clearing date and payment term fields in the report, for the invoice's posted. There is already an existing report based on RBKP and RSEG tables. But I dont see any clearing date fields in these tables. How to add these 2 values to the report ?

 

Appreciate if anyone please explain me how to fetch the clearing date and payment term fields for the invoice posted in RSEG/RBKP tables. I think only the incoming invoices will appear in RSEG/RBKP table, am I right ?

 

Can anyone please highlight how is the relation between these incoming invoice tables and cleared item table - BSAK and BSEG. I see all the required fields for the report exist in BSEG, but I am not sure on what conditions the values in RBKP appear in BSEG/BSAK tables. Appreciate if you provide me some insight into this issue.

 

Thanks & Regards

DR


ASE Error SQL175 - During SPAM update, IMPORT PROPER phase

$
0
0
Short Text
[ASE Error SQL175] During SPAM update, IMPORT PROPER phase
Msg Error: Functions may only be nested to level

 

Dear all,

 

I'm updating SP stack on a SAP ERP 6.0 EhP7 system, running on SAP ASE
database (16.0.01.01 version). During SP stack update of SAP_APPL and
SAP_FIN components, see defined queue below, the SPAM stops on
IMPORT_PROPER phase.

 

Package ID Comp.-ID Release Short Description

 

SAPKH61707 SAP_APPL 617 SAP_APPL 617: SP 0007
SAPK-61707INSAPFIN SAP_FIN 617 SAP_FIN 617: SP 0007
SAPKH61708 SAP_APPL 617 SAP_APPL 617: SP 0008
SAPK-61708INSAPFIN SAP_FIN 617 SAP_FIN 617: SP 0008
SAPKH61709 SAP_APPL 617 SAP_APPL 617: SP 0009
SAPK-61709INSAPFIN SAP_FIN 617 SAP_FIN 617: SP 0009
SAPKH61710 SAP_APPL 617 SAP_APPL 617: SP 0010
SAPK-61710INSAPFIN SAP_FIN 617 SAP_FIN 617: SP 0010

 

Looking into SAP syslog, I've found the error messages below. I'd found
the SAP Note 2201556 which it is related to this error in SAP Support
Portal. However, after SAP note implementation the error still active
and
I'm not able to proceed and complete the SP stack update.

 

The messages below are also mentioned in SAP Notes 2197922 and 2162596
and these notes references the SAP note above to resolve the error.

 

The ABAP changes for SAP Note 2201556 were applied manually into
referred
methods, because SNOTE cannot be used due to the OCS queue lock
generated
by SPAM procedure (which remains incomplete in IMPORT_PROPER).

 

During error resolution I'd upgrade also the SAP Kernel patch level and
I(m processing SPAM update with the patch levels presented below:
R3trans - patch 224
tp - patch 310

 

Thanks in advance,
Herman Arancibia

 

Error messages at syslog

 

C DbSlExecute - Error 99 (dbcode 175) on DDLExecute
C DbSlExecute - Statement too long to display. Truncated version below:
C [CREATE VIEW "PPHMRP_PERF" AS SELECT "PPHMRPLOG_STAT"."MANDT" AS
"MANDT", "PPHMRPLOG_STAT"."UUID", "PPHMRPLOG_STAT"."MRP_COMMENT"
C dbdssyb: DBSL99 SQL175
C [ASE Error SQL175][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Functions may only be nested to level 32.
C
B ***LOG BY2=> sql error 175 performing EXE [dbds 670]
B ***LOG BY0=> [ASE Error SQL175][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Functions may only be nested to level 32.
[dbds 670]
C
C Wed Nov 18 13:26:40 2015
C ERROR: -1 in function ExecuteAndFlush (SQLExecDirect) [line 13247]
C (175) [ZZZZZ] [SAP][ASE ODBC Driver][Adaptive Server Enterprise]Functions may only be nested to level 32.

Employee Central Payroll vs. On Premise Payroll

$
0
0


Hi Folks,

 

Hope someone can help me address the question below....

 

This client is moving to the Cloud with Employee Central and Talent Management, and will like to have payroll in SAP.

If this client already has SAP Finance implemented, and could potentially implement SAP Logistics processes in the future, what will be the advantages and disadvantages for opting for Employee Central Payroll vs SAP On-Premise Payroll ?

 

For example, how will the Integration with other SAP modules like CRM, FI, MM, Purchasing work if we opt to implement EC Payroll ? Will we have to send a minimaster of employees to the SAP ERP on premise FI system  ? In this case employees will be in 3 places (EC Payroll, EC and on SAP on premise).

 

How about licenses ? Will it be more cost effective to have EC Payroll as opposed to having SAP on premise payroll ?

 

Thanks.

 

Javier

Extracting material from a string

$
0
0

Hello everyone,

 

I am selecting from workflow table (swwwihead). In the field  wi_text, there is a detailed description of the workflow message.

 

Examples:

317837-0010: US10: Ready for Dchain 03

17627 : IN10 : System Error - DChain 10 Not Set

358094-045 : AU10 : System Error - DChain 10 Not Set

 

If you notice, we have material numbers of all different lengths. Does anyone know if SAP has any standard functionality (FM or BAPI or built in function) to pass a string and extract the material number in that string? Or know of a workflow table other than swwwihead that may have this information?

 

I am currently parsing the string first assuming it is a 10 digit material.

I then am using the BAPI BAPI_MATERIAL_EXISTENCECHECK to see if the material exists in our system

If it doesn't I parse the string down 1 character and run the BAPI again, etc.

This is obviously not an ideal solution so was wondering if anyone had any better ideas.

I have searched around but haven't had any luck.

 

Thank you!

ODBC Connection Error - protocol driver two endpoints failed

$
0
0

Hi,

 

Trying to connect remotely to a REDHAT SYBASE. from WIndows 2012 Server where SDK is installed.

 

 

 

>>isql -Usa -Ppassword -S192.168.242.199:5000

 

CT-LIBRARY error:

        ct_connect(): network packet layer: internal net library error: Net-Lib

protocol driver call to connect two endpoints failed

 

 

>>Simple C Sharp .NET 4.5 SDK Project::

 

Sybase.Data.AseClient.AseException: The socket failed to connect within the timeout specified

 

 

 

What am I doing wrong?

 

Many thanks,

Not able to call another view from ObjectPageSubSection

$
0
0

Hi,

 

While using ObjectPageSubSection option in sapui5 app. development, am not able to call another view.

In one of my development am using <ObjectPageSection>, in that I declared few custom blocks. In one of custom block, while clicking the button I wanted to navigate to another view.  how can i achieve this ... Pls do the needful...


Thanks in advance..

-Mahendran

Viewing all 8150 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>