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

SAP business one starter pack with option lumira

$
0
0

Hi,

I have a question about option lumira and sap b1 starter pack.

Lumira is option sap b1(sql), but Is lumira option sap b1 starter pack? I don't find information about lumira and sap b1 starter.


CAN I DELETE AN ASSET DETAILS OF A COMPANY IN FI RECORD ?

$
0
0

Hello,

 

Good morning to all,

 

If a company want to delete an asset details from his company assets data records in SAP FI. If it can happen then suggest me how it can happen in sap .

 

 

Regards

Sudhansu

Re: How to activate Cache Booster for HCP/FLP only, without abap/gateway

$
0
0

Hi Wolfgang,

 

The caching you are referring to is browser cache and as you mentioned in your post, you can invalidate this cache by going to ManageSite -> Site Settings ->actions -> clear HTML5 applications cache.

 

There is no automatic\trigger based way to inactivate this cache once an HTML5 application was updated.

 

Best,

Sapir

Copy from Local Member to Store Key Figure

$
0
0

We use local members to perform some look ups and calculations that are suited to Excel (and are not relevant for storing in IBP). We wish to copy the end result of this calculation from a local member to an IBP stored key figure. Is there a convenient way of doing this? The standard COPY operator requires the source key figure to be defined in the planning area model even when it is defined for interactive mode.

Re: Using PHP to retrieve SAP B1 Data

$
0
0

Hi Paul,

 

I am also trying to do the same thing with PHP and SAP B1 can you please mail me some sample codes.

 

Thanks and Regards,

A. Rashid

SAP BO SSO inconsistent in multi domain environment

$
0
0

Hello Techies,

 

We have recently migrated our BO 4.1 SP6 system from Z1.if.net domain to V1.com domain.

We had this humongous task of setting up SSO for domains : Z1.if.net ,  Z2.if.net , Z3.if.net and V1.com

There is 2 way forest trust between these domains.

 

Now, after successful SSO configuration, users from all these 4 domains, were able to log in using SSO and manual logon is also possible.

But, some times, SSO login for users from Z2.if.net , Z3.if.net domain doesnt work ( While it works well for Z1 and V1 )

 

When this issue occur,

 

1. In CMC --> Authentication --> Windows AD , if i give an update, i get an error on the user groups for Z2 & Z3 domain.

 

2. I remove the user group for Z2 and Z3 , and add them back. And give an "update" , it gets updated with no error.

 

3. Restart tomcat , and the issue gets fixed. All 4 domains are able to login now.

 

 

We couldnt drill down, where the issue could possibly be.

If its an issue with SSO configuration, it should not have worked even once. 

 

Any lead would be of a real help.

 

Thank you in advance..!

 

Regards,

San

Re: SUM tool execution error.

$
0
0

Hello there

Sorry for late reply,

I raised an incident with SAP and they suggested following which helped.

 

Solution 1

 

 

Could you please check directory called oldSUM under /usr/sap/SID/SYS/global/security/data then remove or rename it.

Then Restart SUM. Let me know the result.

 

 

Solution 2

Could you please try to rename the file /usr/sap/SM2/SYS/global/security/data/sumExecutions.xml .

After renaming this file , restart SUM again.

 

 

Solution 3

.Resetting the update procedure on operating system level

a.

On operating system level, change to the SUM directory with the following command:

cd /usr/sap/<SID>/SUM/abap/bin

b.

From the command line interface, start the internal SAPup executable using the

gt=scroll parameter:./SAPup gt=scroll

c.

Choose the Back button.

d.

In the dialog on the command line interface, choose Reset.e.

 

 

I did all of them above and not sure which exactly worked, but in the end I got rid of old instance of SUM.

 

Good Luck.

Rupesh

Re: Detail of software components impacted after EHP upgrade

$
0
0

Dear Ashish,

 

For performing upgrade anyhow you are going to generate stack file. While generating the stack file you can see what all component are getting upgraded.

 

If you have already generated the stack file, you can see the detail information in stack file TXT file which will contain source and target detail of component which are getting upgraded.

 

Regards,

Anil


L_TO_CREATE_DN

$
0
0

Hi All,

 

I am creating a front-end interface that will call L_TO_CREATE_DN via RFC using VB.net program. I have had experiences calling BAPI's but I cant seem to be able to append IT_DELIT using appendrow which is what I usually do for tables. I do not like customizing, I'm hoping the standard function would work (SE37 works).

 

Any help would be greatly appreciated.

 

Thanks,

Raymund

Re: Prod Order confirmation using BAPI_PRODORDCONF_CREATE_TT batch created but after sometime

$
0
0

If you call BAPI_PRODORDCONF_CREATE_TT as BACKGROUND TASK, it will only be executed after commit of the main transaction.


If the creation of transfer order is also execute in the same RFC wrapper, then did you use the WAIT option of COMMIT WORK or parameter of BAPI_TRANSACTION_COMMIT. You could also try to LOCK (ENQUEUE FM) the production order with WAIT option in a small DO/ENDDO loop, then release it before calling the transfer, or even do a SELECT SINGLE of batch record with a WAIT UP TO 1 second in a similar loop.


Regards,

Raymond

Need information about table control rows.

$
0
0

hi,

I am facing one problem In module pool program Table control,The requirement is like user is giving the input data as Po number from and to.

then table control has to fill.

 

User will open the Screen using the T-code, Here Table control has to show 1 row, After that user will enter the From And to Po numbers,

Based on the Number of records in Row table that many rows has to created.

But Once open the Screen it is showing 9 records, I hope while designing the Table control it was created 9 rows.

But i would like to show 1 records once open the Screen.

Below is my code.

 

AT PBO I USED LIKE BELOW.

  DESCRIBE TABLE it_ekpo LINES podet-lines.

  The number of lines of it_ekpo i am assigning to the Table control lines. But still it is taking 9 rows.

  How could i achieve my Requirement.

 

 

PROCESS BEFORE OUTPUT.

  MODULE status_5050.

 

  LOOP AT it_ekpo INTO wa_ekpo WITH CONTROL podet.

    MODULE fetch_data1.

  ENDLOOP.

 

MODULE status_5050.

  SET PF-STATUS 'FETCHDATA'.

  SET TITLEBAR 'FETCHDATA'.

 

  BREAK-POINT.

  DESCRIBE TABLE it_ekpo LINES podet-lines.

 

 

Note: here  in debugging i am checking,

     SY-LOOPC eq 0

     PODET-LINES eq 0

ENDMODULE.

 

 

MODULE fetch_data1 OUTPUT.

  DESCRIBE TABLE it_ekpo LINES podet-lines.

  BREAK-POINT.

  READ TABLE it_ekpo INTO wa_ekpo INDEX podet-current_line.

 

 

  MOVE: wa_ekpo-ebeln TO sit_row_t-ebeln,

        wa_ekpo-ebelp TO sy-tabix,

        wa_ekpo-matnr TO sit_row_t-matnr,

        wa_ekpo-txz01 TO sit_row_t-maktx,

        wa_ekpo-menge TO sit_row_t-qty,

        wa_ekpo-meins TO sit_row_t-uom,

        wa_ekpo-netpr TO sit_row_t-price.

  sit_row_t-ltotal = wa_ekpo-menge * wa_ekpo-netpr.

 

 

Note: here  in debugging i am checking,

     SY-LOOPC eq 9

     PODET-LINES eq 0.

 

 

ENDMODULE.  

Validating before switching tabs

$
0
0

I am using the tab bar with two tabs.The first tab has input fields. I would like to validate these fields upon clicking the other tab header  and stop the other tab being shown if there is an error in the first tab.

 

Is there any event I can use for this? I am using javascript views.

Re: Char Relationship in integrated planning

$
0
0

Hi Gregor,

         The scenarios which I tried out made me say that. However,Many Thanks for correcting Gregor.

Regards

Tharun.

Re: Does SAP HCP supports automated build and deployment as part of its devops services?

$
0
0

Invited you to the #hcp channel on Slack (mentors team)

Re: PI SHEET

$
0
0

Hi Mohan,

 

Actually I am also stuck in the same situation, have u got any solution in that context?

 

Regards,

Chetan.


Technical validity date conversion to official validity date not happening automatically

$
0
0

Hi Experts,

 

According to the SAP help, whenever we upload SPL from XML file or update manually, system execute the function automatically in the background. But in our case, it is not happening. We have run t-code (/SAPALL/SPL_MD05) manually to convert technical validity date to official validity date, otherwise it is blocking for obsolete entries. I executed steps after upload i.e. Generate, Aggregate comparison terms. Is there anything I am missing here?

 

We are on GTS 10.1 version, 901-0014.

 

I really appreciate your feedback.

 

Regards,

Manohar.

Re: Problem in Function C_DIR_READ_START

$
0
0

Moreover, make sure P_PATH is defined as type C, it will return such an error with type STRING.

Re: How to set up dynamic height (resizing) of ALV tree HTML header?

$
0
0

I never saw something like that in control framework.

SAP Gateway service redefinition with Overwrite Base/Extended Service

$
0
0

Hello All,

 

I would like to know how to undo redefined service once redefined with Overwrite Base/Extended Service.

Any help would be much appreciated.

 

Thanks

Anuj

Re: Data difference in MCI8 & IW38

$
0
0

Hi Shubham,

 

Are links on information structures were useful & is your issue resolved. Plz. update.

 

 

Regards,

PS R

Viewing all 2096 articles
Browse latest View live