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

Re: Error while importing the Transformation TR

$
0
0

can you check that,  infoobjects ZFEEDERNR, 0ADDR_SHORT are either part of your current transport or they already exist in the target system and they are part of your target DSO/cube in QA.. if you not you need to collect them and move it before you move this transport and then re import your current TR,


Re: Stored procedure runs extremely slow in certain scenarios

$
0
0

When you "create proc xxx with recompile" - When you execute that proc, a plan is cached and executed, and then immediately removed after execution.  There is no other task that will ever reuse that plan because it is removed from proc cache.

 

When you "execute proc yyy with recompile" - After execution of the proc, a cached plan is left behind in proc cache, and can be reused by another task as long as it stays in proc cache.   This is why in the documentation it states that it can swamp proc cache with many plans for this procedure if you execute in this manner repeatedly.

 

Disadvantages to either approach only really concern repeated executions, in tight loops for example.  As Mark states, the disadvantage with "create with recompile" is the compile time incurred if the proc is executed many times.  Disadvantage with "exec with recompile" is that many plans will be cached (one for each such execution), and force other plans out of cache.  Not only that, you might not _want_ another task to get your cached plan because it was compiled with boundary parameters etc.

Query Orden de Ventas - Entrega - Factura

$
0
0

Saludos a todos.

 

Tengo el siguiente query

 

SELECT distinct

       T0.[DocNum] 'Orden Ventas',

       T0.[DocDate] 'Fecha OV',

       T3.[SlpName] 'Vendedor',

       T0.[U_FCOrden] 'Fecha Fin',

       t4.[LastName]+' '+t4.[FirstName] 'DP',

       T0.[Project]   'UN',

       T0.[U_OrdTecni] 'Instalador',

       T0.[DocTotal]   'Total',

       T0.[DiscPrcnt]  'Desc OV',

       t2.[DocNum]     'Factura',

       t2.[DiscPrcnt]  'Desc Fac'     

  FROM ORDR T0  

        INNER JOIN INV1 T1 ON T1.[BaseEntry] = T0.[DocEntry] AND T1.BaseType='17'  

        INNER JOIN OINV T2 ON T2.[DocEntry]  = T1.[DocEntry]

        left outer join oslp t3 on t3.[slpcode]   = t0.[slpcode]

        left outer join ohem t4 on t4.[empId]     = t0.[OwnerCode]          

Where T0.[DocDate] between [%0] and [%1]

 

La idea es que me de las Ordenes de Venta y las Facturas, pero tengo problemas cuando existe una Entraga de pormedio.

 

Y no se como agregar las tabla de entrega ODLN y me muestre tanto las que tiene entregas como las que no.

 

Si alguien me puede ayudar.

 

Saludos y gracias de antemano.

Que todo sea para bien..

$Batch read using Function Imports - Odata

$
0
0

Dear Experts,

 

I can able to perform multi read using $Batch.

 

For Ex :  SurveyEmpSet - Entity Set Name

 

GET SurveyEmpSet(EmpId='12345',EmpName='Test Emp1') HTTP/1.1


GET SurveyEmpSet(EmpId='45678',EmpName='Test Emp2') HTTP/1.1

But now I need the same for the function import to get output. What's the change I need to do in the above.

 

For Ex:  ContList is the Function Import Name.

 

/sap/opu/odata/sap/ZTEST_SRV/ContList?Lang='E'

 

/sap/opu/odata/sap/ZTEST_SRV/ContList?Lang='A'

 

 

Regards,

Srinivasan K

Re: New line in mail forms

$
0
0

Hi Anna,

Unfortunately this is not possible to insert line breaks within attribute values without making some modification to sap standard code. You can try to debug CL_CRM_PML_BTF_DOCUMENT->REPLACE_FIELDS_TIDY( ). As you will see if your attribute is named %SAP_CONTENT_* instead of %SAP_*, no escaping will take place, but this kind of prefix is hardcoded for image source... so you cannot use it to add simple text.

In other words, prepare to make some modifications to SAP standard code to achieve your requirement.

Best regards,

Nick.

Re: SAP Gateway Deployment options and configuration

$
0
0

Ekansh,

 

Thank you very much for the valid information. your information helped me to understand the some basic configurations in different landscape scenarios.

 

Thanks

vijay

Re: SAP Business One Extension Manager

$
0
0

Thank you, that is helpful. We'll give it a try.

no default co. address has been maint. in the system. create an address

$
0
0

Dear Experts,

 

 

This questions has been asked so many times in this form,reading them i did not get my solution,

 

I had installed SAP ERP6.0 EHP7 for ISU, then i created new client 100,  and with the help of SAP* user i did client copy from 000 to 100(SAP_CUST),

But i am creating new user, i says "no default co. address has been maint. in the system. create an address".

 

I read many post from Here ,everyone said that ,maintain a company address in SUCOMP. But when i define comapny adress in sucomp, in country option  when i write country' short form ,it says country is not defined.

 

Please let me know, what can be the solution?

 

Regards,

 

Faheem.


Re: Intergration Gateway of Open Text Soap Services Issue

$
0
0

SUMIT LAL

 

Is that SOAP WS available externally? Do you have link for that?

 

Regards,

JK

Re: Lumira Extension Thumbnail Error

$
0
0

Hi Ryan - I for sure am not a developer, but I did find something in the release restrictions for 1.25 Lumira - see http://help.sap.com/businessobject/product_guides/vi01/en/lum_125_vp_en.pdf

 

Page 7:

"Thumbnail view may not correctly show an extension if it uses DIV as root container This is a known limitation in SAP Lumira that will be fixed in a future release.

 

Thumbnail view may not correctly show an extension if it uses external CSS files This is a known limitation in SAP Lumira that will be fixed in a future release"

 

Could this be related to your issue?

 

Tammy

Re: Reference flow type 10 Follow-Up Posting

$
0
0

Hi,

 

Is there any BAdi or user exit that can controls the follow up posting issue , as this will solve this problem.

 

 

 

Best Regards,

Khairy Soliman

SAP JAVA node restart script

Re: SAP BPC 7.5 NW

$
0
0

Hi Russel,

 

I recently had the question from another customer who wanted to know if they could use IE 11 in compatibility mode with their BPC 7.5 NW version.   I didn't find it documented anywhere, I think this requires verification. I will try to find out more and let you know.

 

Another thing that you can do is to install it on one client machine and test it.

 

Best Regards,

Leila

Re: How to delete transaction data if a material location is made not relevant to apo

$
0
0

Aleem,

 

Isn't it a step by step approach to remove any material from planning. If we say we are removing one material I hope it has a reason but just not like that. It needs to have a business reason example end of life cycle or some other business reason. Which means logically my forecast basically demand should be the first which should not be there. If that would not be there it will not get considered in planing for generating new supplies (planned orders/ purchase orders). Thereafter you need to close all WIP orders and finally decide what needs to be done with existing stocks. Though for WIP & stock part when once dis-continued along with removal of forecast you can do CCR which would show without IM and can be removed in APO. Thereafter business needs to decide finally how to handle WIP & stock. But for APO its more or less clean.

 

I don't think there is any logical trigger (automatic) which is available. But on the other hand you can create your own. Example you can have plant specific status as an attribute for your CVCs which are considered while releasing your forecast. IF its P (production) this forecast would be released, on the other hand if it changes to A (archive), which means change in CVC (could be automatic also) this forecast would not be released.

 

Thereafter you can plan a transaction data deletion job with selection profile (through enhancement) for such materials.

 

It's matter of exploring such options and defining right way of working when once life of material comes to an end coz of any reason.

 

Regards

Rahul

Reusable Modal Dialog

$
0
0

Hello everybody,

 

 

 

we would like to implement a modal dialog for the standard SAP-Screen. This MD should be opened from SAP-Screen by pressing OBN Button.

 

 


Since we don't want to show any other screen then a dialog, we created not a QA with a MD in it but a reusable (standalone) MD.

This MD seems to be designed for the use case of OBN navigation, since it is possible to create an OBN Inport in it.

 

 

 

Then we adapted the standard SAP Screen and added an OBN Button to it and configured this OBN Button to navigate to our MD.

 

 

 

The problem is that when pressing OBN Button we've got a message

"You are not able to open this link due to a missing work center view assignment"

 

 

 

Does anybody knows how does the authorization for the Modal Dialog goes?

 

 

 

Best regards,

Leonid Granatstein


Re: CSV file lines - multiple targets

$
0
0

A suggestion here, Since you are getting a single csv file and based on the records, you need to route them to different receivers. To keep it simple, why dont you go for multimapping and do it through graphical mapping. Here you can easily set the conditions and incase there are no records for (11B) SUPPRESS it. You will have a fixed number of receivers.

Please correct me if there is any other functionality requirement in your case that i am missing.

 

Regards,

Saiyog

Re: Field edit mode based on Saved/Not Saved

$
0
0

Hi everyone,

 

Issue was solved in a more simple way, and even more, without requiring PDI, just with KUT.

 

As the requirement is to only be able to change my field before being saved for the first time, I only need to create my custom field through KUT and add it as editable on the QuickCreate (QC) floorpan while adding it into QV (QuickView) and TI (ThingInspector) as read-only. In case of adding in on another floorpan, just add it through KUT and set it as read-only and, Issue Solved!!!!

 

Thanks and regards.

 

Alejandro.

Re: Timezone Region not found

$
0
0

Hi Sudeep,

 

Which Oracle release do remote databases use?

 

One of assumptions regarding cause of the issue may be the one described in Oracle support article 1068063.1 ("Connections fail with "ORA-01882: timezone region not found" after upgrade from JDBC 11.1 to 11.2"): "The ORA-01882 is due to a change of functionality in JDBC 11.2 in conjunction with a default timezone name/region on the client that is not supported by the database".

 

The solution proposed in the article, is to ensure a timezone supported by the database, is used by the JDBC client (here, PO) when connecting to the Oracle database. Timezones which are recognized by the Oracle database, can be checked by looking into view V$TIMEZONE_NAMES:

SELECT DISTINCT tzname FROM V$TIMEZONE_NAMES

 

The workaround is to set the parameter oracle.jdbc.timezoneAsRegion with value false. This can be done in advanced mode of the JDBC communication channel. Please note that Oracle database specific connection parameter names should be preceded with prefix driver: (see SAP Note 1078420).

 

 

Best regards,

Vadim

Re: NWBC 4.0 and ESS self service

$
0
0

Nwbc 4.0 is fine, did you assign your user correct ESS roles to see the tab etc is your system correctly configured

Re: Travel requests are not opening in powl inbox

Viewing all 8798 articles
Browse latest View live




Latest Images