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

Questions on Capitalization Process For Fixed Assets in SAP

$
0
0

Hi,

 

When we record an AP Invoice for a Fixed Asset, the Posting Date of the AP Invoice (actually the Value Date in Accounting Tab) is automatically captured as the Capitalization date in the Fixed Asset Master.

 

There is also a separate Capitalization document in the FA module, where you can select the same asset master and enter any Posting Date, Value Date, and enter any value for the asset.

 

I have a few questions:

 

1. When we create an AP Invoice, the Capitalization document is also created automatically. In which situation is it useful to create a Capitalization document manually without an AP Invoice?

 

2. There is also a field Capitalization Date in Asset Master, which can be entered manually until you create an AP Invoice or Capitalization document. If we enter the date manually, is there any need of Capitalization document? What happens if we enter a date manually, and also create a Capitalization document separately with a different date? The date which we entered directly in the Asset master remains as the Capitalization date, then what is the use of the Asset Value date in the Capitalization document we created?

 

3. There is no restriction on creating a Capitalization document multiple times for an Asset. For example, we can create AP Invoice for an Asset which automatically creates the Capitalization document, and also separately create Capitalization document for the same asset as many times as we want. In which situation is this useful?

 

Thanks.


Re: Agentry "Fetches"

$
0
0

Hi Divya,

 

Is this what you were looking for?

 

MobileStatusUpdateSteplet.PNG

 

Regards,

Chung Yu - SAP Senior Support Engineer

Re: Supplier Invoice Creation via ABSL Not Working

$
0
0

Hello Lewis,

 

Did you check in debig that your code "var newSI = SupplierInvoice.Create(siRoot); //Create a new supplier invoice" is well triggered?

 

If the instance is well Created, then I think the problem may come from the ItemAccountingBlockAssignment. This is a [0,1] association so it needs to be created also before associating it with values I think.

 

First, check your Item.IsSet() as you did. If it is set, check that Item.ItemAccountingBlockAssignment.IsSet().

If yes you can modify it, if no, create the node.

Then after creating the AccountingBlockAssignment you may be able to populate it and have your Supllier Invoices created.

 

I hope this helps!

 

Best regards.

Jacques-Antoine Ollier

Re: Synchronization Tool notes and updates - TaxFactory 10

$
0
0

Hi Anna,

 

Yes, this is precisely the issue that I am having, and I believe Euna is as well. I'm not aware of the status of any official fix for it. It is fairly close to symptoms 1 and 2 as described in Note 2130013, yet both Euna and I have applied this Note before running the tool or creating the transport.

Re: BSP: Logout does not work

$
0
0

Mr. Neuman,

 

Did you create a separate page for logoff?  And just 1 event, OnRequest?

 

Thanks you for your answers!

 

Regards,

 

Steve

Re: Getting error message during period splitting in MC88

$
0
0

Thanks Satish and Rupesh for ur immediate inputs. I will update u after implementing the notes.

Thanks again.

Re: Release strategy-multiple authorization

$
0
0

That's the way I initially set it up but only 1 approval triangle show up. We'd like to see all 3 so that each one can release, but it doesn't seem possible since there are no prerequisites.

Re: Crystal Report PDF de factura con resumen.

$
0
0

Que tal Omar.

 

1.- Los campos de artículo y cantidad imagino los tienes en la sección de detalle. Lo primero que vamos a hacer es ocultar dicha sección. Para esto, en vista diseño donde te aparecen los nombres de las secciones vas a dar clic derecho (Sobre la sección detalle) + Suprimir o Ocultar.

 

2.- Insertar un nuevo grupo: Insertar + grupo + elegir el campo a agrupar (Articulo)

 

3.- Aparecen  nuevas secciones en tu reporte: Encabezado grupo 1 y Pie de grupo 1, para el ejemplo que necesitas vamos a ocultar también la sección "Encabezado grupo 1"

 

4.- En la sección "pie de grupo 1" Insertaremos el campo Artículo. Para el campo cantidad vamos a crear un campo de total acumulado: Explorador de campos + campos de total acumulados + nuevo + elegir el campo a resumir (cantidad) + tipo de resumen (suma) + evaluar (Al cambiar de grupo -elegimos el grupo #1 que acabamos de crear-) + Restablecer (Al cambiar de grupo -elegimos el grupo #1 que acabamos de crear-) + aceptar.

 

5.- Insertamos en la sección de "pie de grupo 1" el campo que acabamos de crear

 

Y listo, quedaría el informe como el de tu ejemplo. Son los pasos básicos para trabajar con grupos. Con un poco de práctica puedes adecuar los diferentes parámetros a tu manera.

 

Suerte.


Re: Picking confirmation - WHSCON - batch split and HUs

Re: Synchronization Tool notes and updates - TaxFactory 10

$
0
0

For anyone interested, I documented the process of setting up and using the Sync tool as it worked for us in a blog at Synchronize Payroll Tax Data. Granted, our tax situation is considerably simpler than many others -- no state or local income tax, no reciprocals, no courtesy withholding, no custom tax types, etc -- and by now it seems most following this thread have figured out the basics of getting the tool working. Still, I've summarized what I know about it, including a workaround for one problem I and a couple others are still experiencing, and someone may find this useful.

Re: SAP B1 & .Net (E-Commerce)

$
0
0

Hi Nikunji,

it really depends how you call your webservice and pass the values.

Here is an minimal working example using B1WS ( the arrays ItemCodes,Quantities,Prices simulate your data ) :

String[] ItemCodes = new String[3]{"A00001","A00002","A00003"};
Double[] Quantities = new Double[3] {1,2,3};
Double[] Prices = new Double[3] {1.5,2.6,3.7};
String c = "C30000";
String SessionID = LoginLogout.Login("SBODemoDE");//receive SessionID
if (SessionID.StartsWith("Error"))    return;
svcOrder.OrdersService myOrderSvc = new svcOrder.OrdersService();
svcOrder.MsgHeader oHeader = new svcOrder.MsgHeader();
oHeader.SessionID = SessionID;
oHeader.ServiceName = svcOrder.MsgHeaderServiceName.OrdersService;
oHeader.ServiceNameSpecified = true;
myOrderSvc.MsgHeaderValue = oHeader;
svcOrder.Document dcc = new svcOrder.Document();
dcc.CardCode = c.ToString();
dcc.DocDueDate = DateTime.Today;
dcc.DocDueDateSpecified = true;
dcc.DocumentLines = new svcOrder.DocumentDocumentLine[ItemCodes.Count()];//How many lines
for (int i = 0; i < dcc.DocumentLines.Count(); i++)
{    dcc.DocumentLines[i] = new svcOrder.DocumentDocumentLine();    dcc.DocumentLines[i].ItemCode = ItemCodes[i];    dcc.DocumentLines[i].Quantity = Quantities[i];    dcc.DocumentLines[i].QuantitySpecified = true;    dcc.DocumentLines[i].UnitPrice = Prices[i];    dcc.DocumentLines[i].UnitPriceSpecified = true;
}
myOrderSvc.Add(dcc);
LoginLogout.Logout(SessionID);

 

regards,

Maik

Re: Modify Internal Table using other internal table

$
0
0

You are right. This didn't work. Still same Error. can I use Delete command to delete the records based ob where clause to delete that record from first internal table.

 

Need help on code, please.

Promotion Management in BOBJ CMC

$
0
0

Hi Guys,

 

When I try to promote any webi report, I create a New Job and then collect my objects so that I can promote from one instance to another, for example from Dev to QA and then PRD. I promoted my webi report along with the BICS connection from Dev to QA but since the connection based on Dev that is promoted along with webi, it does not refresh or give me QA data so I have to manually change the connection in the webi report in QA environment and pointed toward QA OLAP BICS connection and it works fine but I have to do this manual process every time I promote any report.

I need to find out if there is a way that if I promote the webi report from Dev to QA it should automatically refresh based on QA OLAP connection rather than Dev OLAP.

I have read some articles on this such as override setting in promotion management but it is not working for me.

Can anyone please advise how can I create a job in promotion management that can allow me to get data based on QA or if I promote it to PRD then I should be able to get PRD data rather than manually changing the BICS connection every time I promote the report in different instances.

 

Thanks

Crystal Reports 2013 SP3 crashing

$
0
0

Hello,

 

We installed Crystal Reports 2013 SP3 to all developers and they have been noticing that Crystal is crashing.

It basically crashes on different scenarios and Crystal freezes and shows the error Crystal Stopped Working.

 

I have gathered different scenarios like:

1. Report was open, doing nothing when getting error crystal stopped working.

2. Report was open, re-titled a column, saved the file click on refresh button to re-run query with same parameters and got the same error

3. Open the report set parameters for the past month to run it and get error not responding.

 

We have re-installed Crystal on different computers and the same issue persist, even in Citrix we have noticed this as well.

 

Has anybody seen this behavior and found any solution for this?

 

Thanks,

Daniel

Re: Open sales order report?

$
0
0

Thanks for this - I looked at VL10C, however I can only get a view of the next 30 days. Our production process is 8-10 weeks so that is not much help for planning.


Re: how to raise error message in consistency validation in bopf

$
0
0

Hello Varshith ,

   you have to fill  eomessage that is an exporting parameter of your execute method

 

io_read->retrieve(

    exporting

              iv_node      = " nOde NAme

              it_key          = " key table

   importing

          et_failed_key     = "failed keys

          eo_message     =

          et_data               = " data

 

 

if want to restrict user  from saving data t when error occurs then insert that key into  et_failed_key .

 

raise message

message 001(message class name ) into lv_msg

 

eo_message->add_message(.......

.............

)

Re: Filter one record from model and bind it to an control like standard tile

Re: Modification in BOPF Root object Data

$
0
0

HI Nikhil ,

first you can use service manage method  retrieve the node data from db.

and you are getting because  you are not passing any data to lt_modification table

 

in your case it should be

ls_modification- data = ................. here you have to pass your data .

 

one more thing if  you are modifying  only one field then add that field to

ls_modification-changed_field.

ohterwise   it set all other field to its initial value .



Regards

LK

Re: MOPZ transaction stucked

$
0
0

Thanks Srinivasan but MOPZ still gets stucked

Re: MOPZ transaction stucked

$
0
0

Thanks Gaurav but my problem is with MOPZ not with SOLMAN_SETUP

Viewing all 8851 articles
Browse latest View live




Latest Images