That's my understanding as well and as I mentioned SAP_UI (in NW74+) or the UI Add-on (in pre NW74) can be independently updated meaning you don't have to update the whole SPS which makes it straight forward in case of Gateway and other hub like systems.
Re: Is SAPUI5 1.22.x available to patch in 7.40 today (29/8/2014)?
Re: Is it possible to handle cofiguration control with out IE4N trx and just handle mounting and dismantle of equipments by a standard way?
Hi ,
We had previously used BAPIs BAPI_IE4N_DISMANTLE and BAPI_IE4N_INSTALL for installation and dismantle apart from these check with BAPI_EQUI_DISMANTLE and BAPI_EQUI_INSTALL BAPIs.
Regards, Srinivas
Re: Ho do I do Auto suggest ( auto complete , autosuggest ) in B1 UI
hi.
It is not possible...that type of functionality is not available in sap b1 till now..
Re: How to Pass on Dimension Filter Selected values to another Component
Hey Ali,
I already tried that.
If we are doing copyFilter or setFilterExt w.r.t a DS and try to copy it into another DS this would not work here.
Because, in this scenario DS (1) - Query 1 and DS(2) belongs to different Query and using setFilter or copyFilter doesn't seem to work as for different queries, the technical IDs are different.
Re: Asset depreciation - Interest expense posted without a cost object
Hi,
Have you defined default account assignments for interest exp. in OKB9? Please check and not done, then maintain it.
Regards,
Mukthar
Re: Error while getting data objects for instance
Hi Priya,
could you post the complete stack trace of the exception? You can find it when you click on the link "Stack Trace" that is visible on your screen. This will help us better analyze if this is a known issue.
Best regards,
Stefan
Re: Reputation points and "SAP Inside Track" Badge is missing from SIT Noida - July 26th 2014 -Event - Speakers and Organizers.
Re: Authorization check to users in Report
Hi Kabil,
a third option to the suggestions http://scn.sap.com/people/nabheet.madan3 mentiones is to look for a property to recognize the special users.
This might be a common role or authority, that no other users will own.
For checking roles you can access table AGR_USERS, for check checking special authorities you need a matching AUTHORITY-CHECK in your report.
Regards,
Klaus
Re: sap treasury PMP
Dear Raju,
Please go to below IMG path and maintained for you PMP for your product type.
Treasury and Risk Management-Transaction Manager-General Settings-Accounting-Settings for Position Management-Assign Position Management Procedure
Regards,
Jain
Re: Hi
Hi
If you checked Delegate Search in the universe level then in the report level you can search the value by using Wildcard.....
Regards
Mustafa
Re: Need small information... about oinv address
HI,
May be it was updated by the user manually for certain invoices as this information does not exist in the BP master data.
You may also check log files.
Thanks,
Joseph
Re: preview pending documents layout
Hello Brian ,
thx for ur reply ,
I tried to use the parameters as u said , but didn't work out well .
i know about dockey wihch is =docentry , and for object = objtype ,
there is something am missing here, am using this layout on SBO 9.9 ,
-----------------------
if i'll ask the qustion in another way :
what should i do to make a layout to be preview-able no matter what is the status of the document , (open,closed,unapproved,pending,etc) , if i can just get the concept i'll start creating another PS , Query , or modifying the existence one .
thx again for ur time
Re: what version of crystal report distribution should I install? CRforVS_redist_install_32bit_13_0_5 or CRforVS_redist_install_64bit_13_0_5
thanks
Aging report question
I am modifying the SAP supplied Customer Aging Report. In the "Repititive_Area", all the columns, i.e., Document, Post Date, Amount, Balance have the source set as "Free Text" and yet it prints the actual data. I can't seem to find how it is pulling the actual data from the report.
Can someone please help me solve that mystery?
Thanks
Re: what components (or runtime distribution) need to be installed on the production server?(visual studio 2008, crytal report 2008 (crystal report XI), server is 2003, 12.0.2000.0 selected form .net, but not on the server..)
thanks
ERROR IN SELECT STATEMENT IN DRIVER PROGRM SY-SUBRC = '4'.
Hello Everyone,
i am new to SAP ABAP , while creating smartforms to print invoice details via driver program its showing error
1)-Function module "FNAM" not found." USING (SSF_FUNCTION_MODULE_NAME)
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
FORMNAME = 'ZINVOICE_FORM'
* VARIANT = ' '
* DIRECT_CALL = ' '
IMPORTING
FM_NAME = FNAM
* EXCEPTIONS
* NO_FORM = 1
* NO_FUNCTION_MODULE = 2
* OTHERS = 3
And second.....
2)- SY-SUBRC = '4' On select statement......while fetching data from VBRK Table.
REPORT ZSD_INVOICE_FORM.
TABLES: VBRK, VBRP, KNA1.
SELECTION-SCREEN: BEGIN OF BLOCK B1
WITH FRAME
TITLE TEXT-000.
PARAMETERS: P_VBELN TYPE VBRK-VBELN,
P_FKDAT TYPE VBRK-FKDAT.
SELECTION-SCREEN: END OF BLOCK B1.
DATA: BEGIN OF WA_KNA1,
KUNNR TYPE KUNNR,
NAME1 TYPE NAME1,
ORT01 TYPE ORT01,
END OF WA_KNA1.
DATA: BEGIN OF WA_VBRK,
VBELN TYPE VBELN,
FKDAT TYPE FKDAT,
KUNRG TYPE KUNRG,
END OF WA_VBRK .
DATA: IT_INV TYPE TABLE OF ZVBRP_STRUC.
DATA: FNAM TYPE RS38L_FNAM,
PATH TYPE STRING.
SELECT SINGLE VBELN FKDAT KUNRG ------------> SY-SUBRC = '4' (WHILE DEBUGGING)
FROM VBRK
INTO WA_VBRK
WHERE VBELN EQ P_VBELN
OR FKDAT EQ P_FKDAT.
IF SY-SUBRC NE '0'.
MESSAGE 'NO INVOICE FOUND' TYPE 'I'.
ENDIF.
IF WA_VBRK IS NOT INITIAL.
SELECT KUNNR NAME1 ORT01
FROM KNA1
INTO WA_KNA1
WHERE KUNNR EQ WA_VBRK-KUNRG.
IF SY-SUBRC NE '0'.
ENDIF.
ENDSELECT.
SELECT POSNR ARKTX MATNR FKIMG NETWR
FROM VBRP
INTO TABLE IT_INV
WHERE VBELN EQ WA_VBRK-VBELN.
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
FORMNAME = 'ZINVOICE_FORM'
* VARIANT = ' '
* DIRECT_CALL = ' '
IMPORTING
FM_NAME = FNAM
* EXCEPTIONS
* NO_FORM = 1
* NO_FUNCTION_MODULE = 2
* OTHERS = 3
CALL FUNCTION 'FNAM'
EXPORTING
KUNRG = WA_VBRK-KUNRG
NAME1 = WA_KNA1-NAME1
ORT01 = WA_KNA1-ORT01
VBELN = WA_VBRK-VBELN
FKDAT = WA_VBRK-FKDAT
TABLES
IT_VBRP = IT_INV
ENDIF.
Thank You all in advance ....for your precious time to look into my problem.....rommel....
Re: BSI Tax Factory 10.0
Hi Graziela,
We are on HRSP 60472 when I run the program RPUPAYUS_SYNC_TAX_DATA in productive run mode looks like it runs fine but its not updating the tables, up on checking the table using se16 the deleted entries are still there, inserted entries are not in the tables, is there a note we need to take.
Re: how to insert sales order data using di api to SAP b1
Re: VBA Code asking for Password
Hi Vadim,
I agree with your suggestion, but the requirement is such that it cannot be met by EPM Sheet Protection and hence this code is required.
Thanks,
Vijay
Re: Transport hung and running for long time - Tried most options
Kill the TP process
Delete the file which is mentioned in the log file that says "in use"
Connect to the SAP system and call Tx STMS - Select the system and then select the "Import Monitor" for that system.
Delete the TR entry from there.
Start the transport again.
Also read this SAP note
12746 - WARN <file> is already in use (), I'm waiting 5 sec
Regards
RB