GROSS CURRENT LENGTH field in Product view

Hi Experts,
For checking the details of product when i go in RRP3 tcode and in that i double click on a Purchase order and then go in activities details i can see the CUR.LENGTH.DL field ie Gross Current length which has a technical field name as PT_ACTDUR_DAYS.
May i know what is the significance of this field.and how is it updated.
TImely and helpful answers will be rewarded.
Regards
AThilles

There can be 2 of these sometimes
(1) ACTIVITIES: Curr Length: Either the Transportation Lane duration or the planned delivery time-- Basically this is the lead time for a External Procurement order
This cannot be updated manually in APO and like mentioned above is picked by the system either from TLANE duration or APO PRODUCT MASTER-Planned Del Time
If there is a business need for changing this value, you can use the APO-INBOUND EXTERNAL PROCUREMENT user exit and change the value here according to the desired logic.
(2) Goods Receipt: Curr Length: As the name suggests, this is the GR time.
Thanks
Kumar

Similar Messages

  • MRP type field in Product view of APO

    Dear Experts,
    I am developing a querry based report on product master of APO for reconcillation purpose.
    I couldnt find field MRP type in product master (/sapapo/mat1) also couldnt track any table which will report MRP type to me.
    Could you please help me in this.
    Many thanks in Advance.
    Sachin

    Hi Sachin,
    You will not find MRP type in APO system, the reason is only specific MRP type have flexibility to plan in APO, that means SAP standard.
    MRP type X0 means external planning - APO system.
    Thank you,
    LV

  • How can I pass field value betwen view in ICWC?

    Hi experts,
    I am new to this BSP programming. I have some requirements to modify standard ICWC in CRM 5.0
    Hope can get some advices and helps here.
    I have added a new field called <status> to context note SEARCHCUSTOMER in BupaSearchB2B view and also the same field name to context note CUSTOMER in BupaCreate view.
    I have added the field into both the HTM views and able to execute thru WebClient. However, I have one problem in passing the <status> value from BupaSearchB2B view  to the BupaCreate view when I click on the 'create' button.
    I do search and saw this thread How can I pass field value beetwen view in IC Web Client? , but i cant figure out how it works.
    Do I need to create the field <status> to context note CUSTOMER in BupaSearchB2B? Currently the context note does not have any attributes.
    Really appreciate for any help.
    Edited by: mervyn tay on Apr 7, 2009 11:42 AM

    solved by myself...
    code in the CREATE_ACCOUNT method.
            ev_entity->set_property( iv_attr_name = 'ZZICNO'
                                     iv_value = lv_icnum1 ).

  • Distr. Key GLEI in Prod. order not getting reflected in SCM product view

    Hi,
    We have the CIF integration model active to transfer production orders from R/3 to SCM-APO.
    When we create a production order in R/3 it is getting transferred over to SCM and can be seen in Product view for the material-plant combination.
    If we have the distribution key as GLEI on the production order in R/3, and we looked at stock requirements list-MD04 the receipts were split across evenly from the start date to the end date of the production order.
    However, in the product view of SCM, the material was shown as available only at the end date of the production order with the full quantity.
    Please provide any pointers as to something we might have missed out that made the CIF'ing not work properly...
    Thanks & Regards,
    Renjith John Andrews

    Hi Renjith
    Yes I do mean the Production Process Model. To check setting you need to do the following:
    Transaction /sapapo/scc03
    Click on choose plan via PPM and enter your material and location and press change.
    Double click your operation
    Double-click your activity
    On the components tab you should see your "Output" material (Type O in I/O Indicator field), next to this should be the consumption indicator field. This is the one that has to be set to 'C'.
    Hope this helps.
    Regards
    Ian

  • Search on the custom field in Product doesn't work

    Hello everyone!
    Lately I was configuring additional custom field for product header and succeed. Then I wanted to add this field as a search criteria for product search and I followed help on help.sap.com and note 1026956. Here are the steps I did:
    1. I've extended structures CRMT_PRIL_QUERY_ADVSEARCH_PROD and CRMT_PRIL_QUERY_ADVSEARCH_IOBJ with my custom attribute.
    2. I went to Master Data->Products-> Basic Settings ->Add Attributes to Search Structure and added my custom attribute there.
    3. Then I found out that it's not enough and I should perform additional steps not included in note and help. I did these steps suggested by Shanthala Kudva in thread [Can't enable the extendable set type attributes in product search UI|Can't enable the extendable set type attributes in product search UI;.
    After that I was able to configure UI and see the search criteria, but when I try to search using custom field I get error message: "Search criteria PRODUCT_ANKER.ZCAT_NUMBER in scenario CL_CRM_PRSEARCHSCENARIO_GETLST not included in tool/filter"
    How to find out the reason of this behavior? Did I miss something in configuration?
    P.S. Set type called ZPRODUCT, attribute ZCATNUMBER. In structures appended component called ZCAT_NUMBER with component type ZCATNUMBER. In table CRMC_PRSEA_ATTR the record has the attributename ZCAT_NUMBER, attribute_id ZCATNUMBER. Maybe I messed up with that?
    Regards,
    Alex.

    Hi Alexander,
    I know this is an old post, but currently i am facing the same issue of not being able to see my custom fields in the BSP Component Workbench.
    I tried to follow all steps maintained in SAP Note # 10269656 & 1541480, but no luck.
    Can you please tell me what do you mean by "Should not add the extended attributes directly to Search Structure, as SAP expects the attributes to be in APPEND structure"? Can you please let me know how the values are to be maintained in the Search structure table "CRMC_PRSEA_ATTR", which is also accessed using the IMG Meanu path "Master Data -->  Products --> Basic Settings --> Add Attributes to Search Structure"
    Appreciate your help.
    Suresh Karri

  • Export to fixed length field format

    Sometimes we need to export records from our student system as fixed length text file to integrate with other software.
    Basically the report will only contains  rows of records, But we want to export it to fixed length field text file.
    And then automate the process.
    We also have Crystal enterprise server.  What is the easy and best way to accomplish this?
    Thanks

    Sorry.  Please ignore my last message.  It went into the wrong thread. 
    There is one huge problem with exporting to Fixed Length in 8.5.  The Fixed Length will truncate any trailing white space.  So if you have a could that's 5 characters long but the current value is only 3, it will only be 3 characters long. 
    To get around this, I've had to create a formula for each column in the report and check the lenght of the field and pad or truncated accordingly. 
    For example:
    If Length ({Table.FIELD1}) > 10 Then
         {Table.FIELD1} [1 to 10]
    Else {Table.FIELD1} & ReplicateString ("*", (10 - Length ({Table.FIELD1}));
    So this column should be 10 characters long.  If the field is longer than 10 characters it will truncate it to 10, otherwise it will pad the extra spaces with *.  You can't use spaces to pad because the export driver will truncate them so I decided * were the best choice because for my purposes I knew that character would never be used. 
    Good luck,
    Brian

  • Automation error - No document is currently open in the Acrobat Viewer

    Hello
    We have a Visual Basic application that we use for automating tasks in Acrobat on a batch of files. This application calls a folder level javascript to perform most of the tasks and is invoked via an application menu item (to get around some of the security restrictions). This application runs fine in Acrobat 7. Recently we upgraded to Acrobat 9 and the application doesn’t work any more. The error that is being generated is
            No document is currently open in the Acrobat Viewer
    I have isolated the problem down to the piece of code that accesses the fields object of the AFormAut.App object. We use the fields object for executing the JavaScript methods. The FormsAutomation sample application that comes with version 9 of the SDK generates the same exception. I have seen references to this problem on various forums but there can’t find a definitive answer.
    avDoc = CreateObject("AcroExch.AVDoc")
    Dim file As String = System.Windows.Forms.Application.StartupPath & "\..\..\..\..\TestFiles\FormsAutomation.pdf"
    bOK = avDoc.Open(file, "Forms Automation Demo")
    'If everything was OK opening the PDF, we now instantiate the Forms
    'Automation object.
    If (bOK) Then
                formApp = CreateObject("AFormAut.App")
                acroForm = formApp.Fields
    Else
                System.Runtime.InteropServices.Marshal.ReleaseComObject(avDoc)
                avDoc = Nothing
                MsgBox("Failed to open PDF Document. Aborting...")
                End
    End If
    To get around the problem I have to display the document that is currently being processed. This doesn’t seem correct as we don’t an acrobat window open when our application is processing a batch of files. Has this method of automation been removed from Acrobat 9 deliberately or is it a bug?
    BTW I am not sure if this is the corrent forum to post this question. If there is a more appropriate forum for this query can someone point me in the right direction.
    Any help would be greatly appreciated.
    Thanks
    Paul

    Yes. I have applied all patches up to 9.3

  • Alternative unit of measure in Product View

    I'd like to know the mechanism of how to convert the qunatity between base unit and alternative unit in Product View.
    Example:
    [Assumption]
      Material: MAT001, Base Unit=KG, Alternative Unit=PC(1PC = 10KG)
      Planned OrderA: MAT001, Quantity=108(KG)
    [Process]
      1. Open the product view and check the quantity. Quantity of planned orderA is 108KG.
      2. Change the unit from base unit(KG) to alternative unit(PC).
      3. Check the quantity. Quantity is 11(PC)
    On the other hand...
      4. Open the Stock/Requirement list(MD04) in ECC and check the quantity. Quantity of planed orderA is 108KG.
      5. Change the unit from base unit(KG) to alternative unit(PC).
      6. Check the quantity. Quantity is 10.8(PC)
    Why quantity of Product View is automatically round up?

    Hello Michel,
    Thank you for the answer.
    Could you let me know more detail about how to check the settings that you mentioned?
    Which field of product master should I check?
    I checked Units of Measure tab but I couldn't find the rounding-related field...
    I also checked conversion setting of /CUNI transaction but settings of both ERP and APO were entirely same.
    Do you have any other ideas?
    Shohei

  • Adding custom field to product master general tab

    Hi All,
             i want to add a custom field in Product master creation (commpr01) ,could any one help me out on this !
    Many thanks and Regards.

    Hi
    You can create field using EEWB or follow the following simple process
    1. Create the required field as " attribute" using the tcode COMM_ATTRSET
    2. Assign it to a set type using the same tcode COMM_ATTRSET
    3. Assign this set type to the product category usign the tcode COMM_HIERARCHY in the set type tab and use the view ID as "BASIC"
    The field will then be available to you in the product master to the products with are created with the named product category
    Hope this helps
    Regards
    Rekha Dadwal
    Edited by: Rekha Dadwal on Mar 19, 2008 1:19 PM

  • Basic Current Timecode Field question

    I tried to figure this out for quite a while, as it seems so simple and basic. But I am still confused!
    I am working on some teaching clips from a text. In the Viewer, the duration of a clip (I&O not set) is 00:00:06;14
    In the Viewer, the Current Timecode Field (upper left field) is 1:00:32;01.
    Is the Current Timecode the original timecode from the tape? And if so, why would one want that info? Two clips from different tapes could have an identical timecode?
    Thanks,
    Sonny Taylor

    Yes, that is the original source timecode, which can be very beneficial in a multitude of ways.
    Tapes can and do have identical timecode...the key to that is giving them 'REEL' names when capturing. That is what FCP uses to designate a source.
    K

  • Displaying stock and sales orders for aggregated product in Product View

    Hello,
    We have successfully created an SNP aggregated planning scenario which uses CTM to plan purchase requisitions and planned orders at the aggregated product level.  The disaggregation to the sub-product level is working as well.
    We have one issue.
    We would like to be able to use the Product View (SAPAPO/RRP3) to view the sales order and stock information for both the aggregated products and the sub-products. 
    Currently, the sub-products (which are the materials in the stock and sales orders functions in ECC) show the disaggregated planned orders and purchase Reqs, and the sales order and stock information in the Product View.
    The aggregated-products (which aren't included in the ECC sales order and stock functions), only show the aggregated planned orders and purchase Reqs. 
    Is there a Product View configuration which will show the aggregated stock and sales orders in the aggregated product view?
    thanks in advance for any comments and/or assistance.
    Sarah

    Hi Sarah,
    The Product view configuration is available under customisation menu under the below path.
    spro > sap guide > APO > supply planning > PPDS > settings for order view/product view
    Under this, you can configure your customised product view structure.
    Regards,
    R. Senthil mareeswaran.

  • Keep a checkbox checked on large product view with grouping

    hi I have this problem with my checked checkbox on my large product view. I've used JS and all is working fine but when I group products and I select anything in the drop down other than the default the product view breaks and the checkbox becomes unchecked.
    here is the site iv'e currently been working on for a long time!!
    Beyonce - Midnight Blue
    any help would be greatly appreciated
    thanks luke

    Hi Dave,
    The catalogue page is actually the Overall Layout inside Online Shop layouts. When you access the catalogue directly that's the layotu that get's rendered. That layout has {tag_cataloguelist...} and {tag_productlist...} which render sub-catalogues and products within that catalogue respectively.
    As for 2, I had a look at the site and it's behaving normally. Let me know if you need a detailed explanation of what it happening there.
    Cheers,
    -mario

  • PReqRel can not be seen in product view in apo

    Hi expert
    when we have stock transfer process, we can see purchase requistion for the material in procure plant in product view
    in apo. And we can see TrRes. for this material in supplying plant. But we can not see related PReqRel in supplying plant in
    apo. I don't know why. Which Material dependent object should be marked if we want to transfer PReqRel for the material?
    Thank you in advance : )

    Liting,
    Data is right. This is the 'classic' case of missing Source of Supply
    Open the Preq in rrp2 and see if a source of supply has been assigned. See if there is a valid transport activity in the preq. Look for available Transportation lane and ensure one exists.
    If the problem is with incorrect Master Data, correct the data, delete the original preqs manually and rerun heuristics.
    Let us know how you progress.
    Abhi

  • Adding fields in costing view of material master

    Hi gurus,
    I need to add 4 fields in costing view of material master. I have followed the steps in SPRO, for configuring customized screen in material master.
    1) Created a function group YMMCO and copied the screen 2904 from program SAPLMGD1.
    2) Added 4 fields in my customized screen.
    3) Created copy of 01 ( Screen reference ) to z1 in OMT3B.
    Since 2904 is not there in the sequence . I changed one 0001 sequence at the end to 2904 . I also assigned my program
    SAPLYMMCO to it. I can see the changed fields in data screen and subscreen.
    4) Then I assigned the SSq to z1 in transaction OMT3E.
    But unfortunately, when I go to MM01 to create a material , I am not able to view the fields I added in costing view.
    I have checked the screen for the previous field, it shows 2904 only.
    Two days back, I did the same thing in basic data view 1 , it was working properly. As per client's suggestion I put it in
    costing view, it is not working . Please give me suitable suggestions.
    Thanks in advance.
    D. Mallick

    Hi,
    I also need to add custom fields to Basic data view. After copying & changing the screen sequence in Config, I could able to see the custom fields in Basic Data view.
    I have appended structure with custom fields to MARA table.
    But the values I enter in the screen is not getting updated to the table MARA.
    Can you please let me know the code, I should have have in PAI (Process After Input) module in the Sub Screen to update the values?
    Thanks,
    Dasa

  • Missing fields in Purchasing View

    Dear all,
    We have got an issue like this.For our client we are using Workflow to
    create a material.For this we made a process like this .
    User1-Basic Data1&2
    User2-Sales Views
    User3 or User4-Purchasing Views.Both are having same roles in workflow.
    User5- MRP1,2,3&4 Views
    User6- Finance&Costing Views
    When we create a material,we are getting an issue in Purchasing View.
    In Purchasing View User 3 able to see all fields in Purchasing view.
    If User 4 tried to fill the data for this Purchasing View some fields
    are hidden,which we are not able to see.The missing fields are as
    follows.
    Purchasing Group,Plant-sp.matl status,Tax ind. f.
    material,Qual.f.FreeGoodsDis,Autom.PO,but both user3 and user4 share
    same roles in workflow.
    After that we had given SAP_ALL to User4 and tried to create a material
    using standard MM01,then also we are not able to see all fields in
    Purchasing View.But User 3 is able to see those fields through MM01 too.I have attached a document,please go through it.
    What would be the reason for this?Please suggest us possible
    solution,as soon as possible.
    Regards
    Ganesh.

    Hi,
    Option:1=>For user 3 and user 4 , problems in cretaion of material difference, Consult your Basis  Consultant.
    Option:2=>For hidden field,follow below steps( in user 3 , check and correct for user 4)
    1. Just click the tab ,(Which is hidden for user 4, in user 3 )and get the field name
    2.Go to T.Code: OMSR and enter that field name and get Selection Group in user 
    3.In USER 4,Go to T.code: OMS9 and select your material type and go to "overviews" .In the next screen, you can see your field selection Group, click that and you can make that field  required entry for User4 and save.
    Now try to create material in USER 4.
    Hope helpful to you and then reward.
    Regards,
    Biju K

Maybe you are looking for