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

Re: Custom date horizon in Macros

$
0
0

Alok,

 

Not sure what will be reference for the dates i.e. from where you will pick this reference but you can achieve this through BADI macro (check below SAP note). If you have any table where you have this period for which it has to be executed then you can refer this table and write logic in BADI macro.

 

1119651 - Creating a BAdI macro


Regards

Rahul


Re: Infopackage failing with an exception with the type CX_SY_FILE_OPEN_MODE

$
0
0

Hi Praful

what Tibolla said is true, try to change the scheduling time of the process chain so that it will not occur

Re: MaxRowsetRecords Registry Entries Not Working

$
0
0

Ok. Are you saying that the reg key is not read by the designer either so if I try to update the report, it will revert back to the default 1000? I might need to change that to a text entry for the time being.

GR against delivery - QI lot

$
0
0

As of current design system doesn't create any inspection lot when we do GR against outbound delivery (Movement 101).

 

Now per business requirement they want to do inspection at GR for delivery.

 

So I activated 08 type in material master. Now going to do GR of delivery at MIGO but system default stock type to unrestricted. If we do GR as it is then stock posted to UNR and no insp lot created.

 

If I change stock type manually from UNR to "quality inspection", then system post stock in QI and create the lot.

 

My question is what change is required, so system default stock type to QI when we do GR against delivery (Mov 101)?

 

Eric

Re: SPL screening of FI incoming payments

$
0
0

Vikas,

 

Thanks for your input. This will get me started.

 

-Mike

Re: How to map 3.X DATA SOURCE to 7.X DATA TARGET.

$
0
0

Hi Piyush

you can directly create transformation from 0VENDOR_ATTR to 0material and create dtp to load from PSA to datatarget.

Re: My paystubs PDF loading issue

$
0
0

Hi Phanindra,

 

Yes Fiori recommends to be on latest patch. You will have to upgrade addon GBX01HR and 05 if required. As most of the new functionality and features will be included in the latest release. If not, try to implement notes and try. There are many notes where payslips are not visible.

 

Also check the security option in google chrome. Chrome disables the pdf loading sometimes and you need to disable web security in order to see the pdf(payslips)

 

–disable-web-security


There is an option in google chrome on the address bar, when you load the app, you should see one security sign, which is not allowing pdf to load. click and allow. Check if this is what you get in chrome.


Else implement correction notes on top of backend level 00.


If you are at sp02 in backend, you can go for :

Additional Notes to be applied in the backend (on top of GBX01HR, SP02 )

2199503 - My Paystubs V2(ODATA) : PDF Payslips not displayed.



Regards,

Tejas



Re: JSON to XML conversion error for REST receiver adapter

$
0
0

Hi Nida,

This is a bug in the standard XML to JSON conversion of the REST adapter. According to SAP a fix for this should be included in 7.31 SP17 (scheduled for November).

 

If you need a workaround before that, you can check my response in this thread:

XML to JSON - force Square brackets via SAP PI

 

Cheers,

Christian


Re: eWM Yard management - Is use of HU mandatory?

$
0
0

Hi Chaitanya,

 

From this very clear that there is no POSC here. its simple inbound and no POSC is here. No no TU and No steps.

 

go to /scwm/prdi >> Press GR and go to following function and create wt and confirm.

 

as this is simple POSC no HU also in this case shipping and reviving is not activated.

 

I hope its clear.

 

Regards

Suraj

Re: Could not create connection from RS to MSSQL

$
0
0

Avinash,

 

PDS is ASE 15.5 on AIX

RS is 15.5 on AIX

DC/ECDA on Windows 2005

RDS is on WIndows

 

I do not find the connector directory but it is referenced in the LIBPATH variable. Maybe something was missing in the RS installation.

 

Do you know in which step this is installed in order to verify the installation log?

 

Regards,

 

Luz

Re: BF para creación de Listbox anidados en SAP B1

$
0
0

Hola son dos cosas diferentes las que necesitras te anexo la solucion a ambas,

 

La seleccion en cascada se soluciona con busquedas formateadas en las que ligas un campo al campo anterior, es decir el segundo te muestra las opciones de la selecion del primero de una manera muy simple

 

Select Parametro2 from tabla where parametro1 = x

 

y así sucesivamente,

 

Para que esto funcione necesitas lo siguiente:

 

  • Solo el primer campo  es desplegable
  • Los campos siguientes son campos normales a los que se le aplica la busqueda formateada para que te de los resultados del anterior

 

Adicionalmente crearia un Transaction Notification para que valide que no ingresan nada manual.

 

Como esta informacion estara en tablas de usuario, creas una autorizacion adicional sobre esa tabla y con eso ya no pueden dar de alta mas opciones.

Re: Disk-based table or column with HDB

$
0
0

Hi Lars,

 

thanks for your reply!

The LOB column "MEMORY THRESHOLD" parameter to keep those columns on disk I am aware of. In our use case, we would also like to do that with columns of other data types, or rather the complete table.

 

Do you know whether this might be a feature in a not-yet-released development version of HDB?

 

Thanks!

Re: ToDate returning #ERROR

$
0
0

Vlad,

 

try this.

 

=FormatDate(ToDate(UserResponse("Enter Sysdate");"M/dd/yyyy HH:mm:ss a");"yyyy")

Re: Ajax Headerless Framework Page

$
0
0


Thank you Sandip,  The interop page is exactly what I want.   And I see the standard rule to use that page, and the standard alias defined.  May not have to do anything custom to the page to use this.

 

Ruth

Context/Paths/Binding?

$
0
0

Hi All,

 

Here's an excerpt of code from an app I'm testing out. The code is in the createContent of the view and has had the context bound to the view. All the bindings work fine and all the values are displayed as expected.

 

For the ActionSheet control (oCallSheet), line 38, it seems I have find the path from the root in order to properly bind to the icl_phone_number collection. Strange because all the other bindings seem to reference the correct data, which is the contact person id passed in - e.g. - line 13 displays fine, line 15 works as well.

 

Workaround right now is to manually pull the path ID from the view name, which I create when navigating from master to this detail page. Any insight?

 

        var btnCallMenu = new sap.m.Button({            text : "{i18n>CALL}",             tooltip : "{i18n>CALL}",            icon : "sap-icon://outgoing-call",            press: function () {                 oCallSheet.setPlacement(sap.m.PlacementType.Vertical);                oCallSheet.setShowCancelButton(true);                oCallSheet.openBy(this);            }        });                  var oCallButton = new sap.m.Button({            text: "{phone}",            icon: {                path: "/icl_phone_type/type",                formatter: function (fValue) {                    switch (fValue) {                        case 'residence':                            return 'sap-icon://home';                        case 'cell':                            return 'sap-icon://iphone';                        default:                            return 'sap-icon://phone';                    }                }            },            press: [oController.onCall]        }).addStyleClass("newButton");        // CALL ACTION SHEET        var oCallSheet = new sap.m.ActionSheet({            placement: sap.m.PlacementType.Bottom,            cancelButtonPress: function () {                jQuery.sap.log.info("oCallSheet: Cancel Button Pressed");            }        });        oCallSheet.bindAggregation("buttons", "/value/" + sID + "/icl_phone_number", oCallButton);

Sorry, to add, my question is, why doesn't the following work?

 

  oCallSheet.bindAggregation("buttons", "icl_phone_number", oCallButton);  

 

Thanks!


Re: Need help getting the BADI to work POST BPC10 upgrade

Problem with SUM 1.0 SP13 , LIBPATH incorrect after restart of upgrade server

$
0
0

Hi,

 

I am upgrading SAP BW NW 7.31 HANA SPS9, with ABAP stack on AIX to 7.4 SPS12.

 

The upgrade was running smoothly (approaching end of UP TIME), till the PC support team initiated a reboot of my PC.

(I know, my mistake I should have started the upgrade server in background)

Anyway, no drama I restarted the upgrade server and it resumed upgrading , no problems at all to start with.

It then crashed in phase SQLDB_SET_LOCKFLAG. I think all this step does is run some SQL.

Reviewing the logs, I found in SQLSTMTSTD.OUT that it was failing because when the upgrade server restarted it did not include

the path to the HANA client in LIBPATH and this is required on AIX. As a result the SQL call got the error below


** ERROR => DlLoadLib()==DLENOACCESS -

dlopen("/usr/sap/B1X/SUM/abap/bin/dbhdbslib.o") FAILED

"Could not load module /usr/sap/B1X/SUM/abap/bin/dbhdbslib.o.

Dependent module libSQLDBCHDB.so could not be loaded.

Could not load module libSQLDBCHDB.so.

System error: No such file or directory

Could" (errno=2,No such file or directory) [dlux.c 445]


I have raised a problem with SAP, but am hoping someone might have had the same issue and have a solution for me.


The environment variables for my adm user b1xadm have not changed and are correct.

The shadow instance is running OK, because it was not restarted and so still has the correct LIBPATH.





thanks


Tom

Re: Take comma out of year but still keep as date

$
0
0

Vlad,

 

Year might be in string format.

 

Can you try the below formula.

 

=FormatDate(ToDate(UserResponse("Enter Sysdate");"M/dd/yyyy HH:mm:ss a");"yyyy")

 

 

 

=[Net Commission Usd] Where([Year]=FormatDate(ToDate(UserResponse("Enter Sysdate");"M/dd/yyyy HH:mm:ss a");"yyyy"))

 

-Sri Harsha

Re: how to calculate max, min and average in crosstab reports

$
0
0

Hi Abhilash,

 

I have followed your instructions as mentioned in the thread posted by you. But I getting the attached error. Appreciate your help. Thanks, Jessy.

cr error.jpg

Re: HANA Smart Data Access With postgreSQL driver

$
0
0

no no.. studio is talking to the hana file system..
try the setting i gave you above.. and also try the 32 bit driver path if a driver made it to that path..

zypper says unixODBC is 64 bit..

isql is finding driver fine must be 64 bit..

 

However hana may be using a 32 bit odbc connector, and your driver path needs to reflect that..

I am speculating only because on windows you have to specify which odbc program to use 32 or 64 and your postgres odbc driver needs to corresspond... 

 

I too am using SUSE linux but i could connect.. SO i feel like your driver path needs to be updated

Viewing all 8746 articles
Browse latest View live




Latest Images