Production Version Value Not available in AFPO

Dear All,
in AFPO table Production Version Field is available but with out value.. what could be the reason. if i need value what i need to do.. Please advice.
Thanks you.
Best Regards,
Suresh

check the following
PV is created after order is created.
When creating production order you have not selected PV.
If the setting is made in MRP4, selection method = 3
or
in img OPL8
Planning tab master data-->PV = make it zero = 0
The production order created cannot be changed, if possible reverse it and read the master data again after creating the PV.
please come back if you need clarrification

Similar Messages

  • What features from previous versions are not available in Adobe Photoshop Elements 12?

    What features from previous versions are not available in Adobe Photoshop Elements 12?
    A handful of features from previous versions are not available in Photoshop Elements 12 due to new product support for 64-bit systems.
    Below, we list the features and the easy alternatives available to you in version 12:
    The Magic Extractor ToolAlternative: Use the Quick select tool together with the Refine Edge tool to quickly select and extract anything from your photos.
    Texture Fill
    Alternative: Use the Edit > Fill Layer option and select the "Pattern" option for Contents. You would have to pre load the pattern file with the texture you want.
    Here is a tutorial on how to create a pattern file: http://www.hongkiat.com/blog/creating-custom-pattern-in-photoshop/
    Frame from video (imports a frame from video in PremiereElements)Alternative: Use the freeze-frame feature in Premiere Elements to capture a frame in video and save it as a photo
    Interactive layout mode in Photomerge PanoramaAlternative: None
    Photoshop ShowcaseAlternative: Try Adobe Revel. Elements 12 will let you view and share your Elements photos and videos across smartphones, tablets, and the web, via Adobe Revel.
    Enhance>Adjust Color>Color VariationsAlternative: None specifically, but you can use Auto Smart Tone
    Filter>Render>Lighting EffectsAlternative: None

    I thought Adobe staff only came here in their "spare time"?

  • I cannot open iPhoto after upgrading latest apple updates.  Getting a message latest iPhoto version is not available in the US

    MacBook pro, 8GB,  OSX Yosemite
    I cannot open iPhoto after latest apple upgrade.  Getting message latest iPhoto version is not available in the US.

    Go to the App Store and check out the Purchases List. If iPhoto is there then it will be v9.6.1
    If it is there, then drag your existing iPhoto app (not the library, just the app) to the trash
    Install the App from the App Store.
    Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

  • How can i get production version value(verid) for luck through bdc.

    HI..
    i have one requirement..that in c223 tcode while i luck the production version through BDC in my report program as i given bellow...i upload mat.no , plant, production version and 1(for luck)...
    req:: i want while i given production version for particlular plant and material no...that production version should be luck....
    so in standard tcode c223 how can i get value to compair it with my input production version value then i will close that...
    program:::
    report ZC2232
           no standard page heading line-size 255.
    *include bdcrecx1.
    Tables : mkal.
    data : nodata value '/' .
    data : CTUMODE type c value 'E'.
    DATA : CUPDATE TYPE C VALUE 'L'.
    DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.
          messages of call transaction
    DATA:   MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    data: begin of HEADER OCCURS 0,
    data element: MATNR
            MATNR_001(018),
    data element: WERKS_D
            WERKS_002(004),
    data element: PLNNR
           PLNNR_003(008),
    data element: CP_STTAG
            STTAG_003(010),
    data element: ENTRY_ACT
           ENTRY_ACT_005(011),
    data element: PLNAL
            PLNAL_004(001),
    data element: FLG_SEL
           FLG_SEL_01_006(001),
    data element: PLANTEXT
           STLAL_004(002),
           DATUV_005(010),
    data element: WERKS_D
           WERKS_008(004),
    data element: PLN_VERWE
           ktext_005(001),
    data element: PLNST
            DELKZ_005(001),
    data element: LOSGRVON
           LOSVN_011(017),
    data element: LOSGRBIS
           LOSBS_012(017),
    data element: PLNME
           PLNME_013(003),
    data element: PLNME
           stlal_014(002),
    end of HEADER.
    data : begin of it_header occurs 0,
           matnr like marc-matnr,
           werks like marc-matnr,
           verid like mkal-verid,
           mksp like mkal-mksp,
           end of it_header.
    data : exnum(40) type c,
           exnum1(40) type c,
           cnt type I,
           CN(2) TYPE C,
           c1 type c value '(',
           c2 type c value ')'.
    start-of-selection.
    parameters: p_file like rlgrap-filename.
    at selection-screen on value-request  for p_file.
      call function 'F4_FILENAME'
    EXPORTING
      PROGRAM_NAME        = SYST-CPROG
      DYNPRO_NUMBER       = SYST-DYNNR
      FIELD_NAME          = ' '
      importing
         file_name           = p_file.
    start-of-selection.
    call function 'WS_UPLOAD'
    exporting
      CODEPAGE                      = ' '
       filename                      = p_file
       filetype                      = 'DAT'
      HEADLEN                       = ' '
      LINE_EXIT                     = ' '
      TRUNCLEN                      = ' '
      USER_FORM                     = ' '
      USER_PROG                     = ' '
      DAT_D_FORMAT                  = ' '
    IMPORTING
      FILELENGTH                    =
      tables
        data_tab                      = it_header
    EXCEPTIONS
      CONVERSION_ERROR              = 1
      FILE_OPEN_ERROR               = 2
      FILE_READ_ERROR               = 3
      INVALID_TYPE                  = 4
      NO_BATCH                      = 5
      UNKNOWN_ERROR                 = 6
      INVALID_TABLE_WIDTH           = 7
      GUI_REFUSE_FILETRANSFER       = 8
      CUSTOMER_ERROR                = 9
      NO_AUTHORITY                  = 10
      OTHERS                        = 11
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    DELETE it_header WHERE MATNR IS INITIAL.
    LOOP AT it_header.
    *start-of-selection.
    *perform open_group.
    perform bdc_dynpro      using 'SAPLCMFV' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MKAL-WERKS'.
    perform bdc_field       using 'MKAL-WERKS'
                                  it_header-werks.
    perform bdc_field       using 'MKAL-MATNR'
                                   it_header-matnr.
    perform bdc_dynpro      using 'SAPLCMFV' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=PICK'.
    perform bdc_field       using 'MKAL-WERKS'
                                 it_header-werks.
    perform bdc_field       using 'MKAL-MATNR'
                                it_header-matnr.
    *>>>>>>>>>>>>>>>>>>>>here what logic can i write****
    clear cnt.
    do 15 times.
    cnt = cnt + 1 .
    CN = CNT.
    exnum = 'MKAL_EXPAND-VERID'.
    concatenate exnum c1 cn c2 into exnum1.
    *perform bdc_field       using 'BDC_CURSOR'
                                   exnum1.
    GET PARAMETER ID 'VER' FIELD EXNUM1.
    CALL TRANSACTION 'C223' AND SKIP FIRST SCREEN.
    if ( it_header-verid = EXNUM1 ).
    exit.
    endif.
    enddo.
    ****************************************************end***>>>>>>>>
    perform bdc_field       using 'BDC_CURSOR'
                                  exnum1.
    perform bdc_dynpro      using 'SAPLCMFV' '2000'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MKAL_EXPAND-PLNTY'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=PRFG'.
    perform bdc_dynpro      using 'SAPMSSY0' '0120'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=RW'.
    perform bdc_dynpro      using 'SAPLCMFV' '2000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/ECANC'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MKAL_EXPAND-VERID'.
    perform bdc_dynpro      using 'SAPLCMFV' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SAVE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MKAL-WERKS'.
    perform bdc_field       using 'MKAL-WERKS'
                                  it_header-werks.
    perform bdc_field       using 'MKAL-MATNR'
                                  it_header-matnr.
    perform bdc_dynpro      using 'SAPLCMFV' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EBACK'.
    perform bdc_transaction using 'C223'.
    endloop.
    *perform close_group.
    *&      Form  bdc_dynpro
          text
         -->P_0161   text
         -->P_0162   text
    form bdc_dynpro  USING PROGRAM DYNPRO.
      CLEAR BDCDATA.
      BDCDATA-PROGRAM  = PROGRAM.
      BDCDATA-DYNPRO   = DYNPRO.
      BDCDATA-DYNBEGIN = 'X'.
      APPEND BDCDATA.
    endform.                    " bdc_dynpro
    *&      Form  bdc_transaction
          text
         -->P_0351   text
    form bdc_transaction USING TCODE.
    call transaction 'C223' using bdcdata
                             mode    CTUMODE
                             update  CUPDATE
                             messages into messtab.
      if sy-subrc <> 0.
      message e000(zmm01) with
      'Check your input data'.
      endif.
    endform.                    " bdc_transaction
    *&      Form  bdc_field
          text
         -->P_0346   text
         -->P_0347   text
    form bdc_field  USING FNAM FVAL.
      if fval <> nodata.
        CLEAR BDCDATA.
        BDCDATA-FNAM = FNAM.
        BDCDATA-FVAL = FVAL.
        APPEND BDCDATA.
        endif.
        endform.                    " bdc_field

    l_nl := dbms_xslprocessor.selectNodes(l_n, '/TaxInvoice/TaxInvoiceDocument');try to change as follow
    l_nl := dbms_xslprocessor.selectnodes(l_n,'/TaxInvoice/TaxInvoiceDocument','xmlns="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0"');Edited by: AlexAnd on Aug 17, 2011 12:36 AM

  • Value not available in the context node

    Hi,
    I have created one custom component through BSP_WD_CMPWB  with only one view called u2018partneru2019 with sample button.
    In this view partner ,then  created one  model context node with reference to  u2018 BuilHeaderSearchu2019 search component with only one attribute  u201CPartner IDu201D.
    When I test the component , WebUI  screen shows partner id input box, and sample button. After  entering partner id value in the input box, then I am pressing sample button. But entered value not  available in the context node.  Please help me, how can i get this value?
    Kathir.

    Hi,
    Check the set_method of that attribute and compare with standard.
    Regards,
    Shobhit

  • I'm trying to re-install an earlier version of a third party app I bought from App Store, version is not available anymore. The problem, 3rd party does not recognize my purchase ID, since I got it from App Store.

    I'm trying to re-install an earlier version of a third party app I bought from App Store, version is not available anymore. The problem, 3rd party does not recognize my purchase ID, since I got it from App Store. My Mac Air Book is limited to update up to OS 10.6.8, unaware of updating the new version of Mac Cleanse I bought from App Store, this new version does not support my OS 10.6. How can the App Store provide me with an earlier version of Mc Cleanse?
    Thanks,
    jerson

    It can't. That app is now lost to you.

  • I downloaded Yosemite and now my iPhoto has a bar across it and will not open. I need to update to the latest version. The app store says the latest version is not available in the Canadian Store. What can I do.

    I downloaded Yosemite and now my iPhoto has a bar across it and will not open. I need to update to the latest version. The app store says the latest version is not available in the Canadian Store. What can I do.

    Go to the App Store and check out the Purchases List. If iPhoto is there then it will be v9.6.1
    If it is there, then drag your existing iPhoto app (not the library, just the app) to the trash
    Install the App from the App Store.
    Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

  • What The Meaning Of Sorry, this Adobe product is currently not available for sale in your country

    What The Meaning Of Sorry, this Adobe product is currently not available for sale in your country

    And, um, what country are you currently in (connecting from)?

  • Production version is not getting created using ALE-IDOC

    Hi all,
    Am using BD10 to transfer the material from sending to receving system.All the views are geting sent successfuly accept the production version tab data of MRP4 view.The segment is available in the standard IDOC.But prodction TAB  is not getting created at receving system .Please help to resolve this issue.
    Thank you.

    Hi Sanu,
    BD10 Send Material..
    the reason might be Production tab is not created is the segment is not a mandatory..
    and the data is not populating for that fields.
    if the segment is not madatorty and data is not available for the fields in the segment ..the prodction TAB  will not be created ..
    Regards,
    Prabhudas

  • AFRC values not available completely

    Hi Experts
                In the table  AFRC, RUECK , RMZHL values are not available completely, whats the reason, and how to get these values from the tables except AFRU based on the AUFNR value.
    Thanks in advance.
    Regards
    Rajaram

    Why the RUECK,RMZHL values are not available in the table AFKO.
    Can anyone help me out this.
    Regards
    Rajaram

  • HT1600 Update version 6 not available in Canada?

    After turning on AppleTv 3, it said update available and started to download something. After about 20 min. a message came saying update failed.
    Checked under Software Update in General, it said Software up to date, however checking the software version # revealed #5.xx.
    What gives?
    I guess the latest update (# 6) is not available in Canada

    It's more to do with the fact that the 6.0 update has been made unavailable due to some issues some users have experienced. I gather then, that in-between your ATV telling you there was an update available, and you trying to download it, the update had been withdrawn temporarily. Don't worry about it, carry on, as you were. When it next notifies you that there's an update available - wait. Wait a while before updating. Check this forum to see if there are any reported problems before making your next move.

  • The download product account is not available

    dear web master,i think the web account is not available,please give me feedback

    liel_noy wrote:
    and how i do it?
    You might find this helpful for general knowledge regarding Macs.
    Mac 101

  • LTP consider production version and not consider selection id for routing

    Dear guru.
    I run mrp long term planning for a material.
    The material have a production version linked to a specific bom and routing.
    In trx OPU5 I have defined that the planning scenario consider a specific selection id for routing  , this routing is different from the  routing of production version.
    The result is that for this material ltp donu2019t consider any routing and no evaluation activity is possible.
    Do you know a solution in order that for LTP the system donu2019t consider production version and instead only consider OPU5 settings ?
    Thanks for your interesting.

    Dear CONS SAP,
    Create a new planning scenario in T Code MS31 and then maintain the scheduling parameters for this planning scenario and
    assign this selection Id and then execute and check.
    Check and revert
    Regards
    Mangalraj.S

  • How to disply error messages if values not available fpr F4 help

    Hi,
    I have implemented F4 help for a selection screen field using function module.
    I want to throw a customized error message if no value is available.
    In my case if no value is available it gives standard message no value available.
    I have tried but it gives a dump.
    Please suggest.
    Thanks and Regards
    Shraddha

    for F4 help defenitely you will be having a select query to populate into internal table
    if it is so
    after the select query with sy-subrc check
    if yes
    then it will proceed with the function module
    if no then throw error message
    message
    use this code
    form f_f4help .
      data : begin of it_itab occurs 1,
               username type usr02-bname,
               end of it_itab.
      select bname from usr02 into table it_itab.
    if sy-subrc = 0
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield        = 'BNAME'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'P_USER'
          value_org       = 'S'
        tables
          value_tab       = it_itab[]
        exceptions
          parameter_error = 1
          no_values_found = 2
          others          = 3.
      if sy-subrc  ne 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    else.
    message with error.
    endif.
    endform.
       cheers
    s.janagar

  • I am in need of oxford products which are not available in US store

    I hope a supporter could give me a solution. I need Oxford's: Literary Criticism, Critical Therory, English Literature and Shakespeare which are not available in the US store. If the only way is to shift my store to UK, I have something around $70 in my balance and I do not want to spend it to zero for a change of Store!
    Is there any way?
    I will appreciate your help.
    Respectfully,
    Masoud Shahnazari

    Sorry... But... You cannot use other countries itunes stores.
    You must be within the Country with a Valid Billing Address and Credit Card for that Country to use the iTunes Store of that Country...
    iTunes Store Terms of Service
    http://www.apple.com/legal/itunes/us/terms.html#SERVICE
    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • Hello I'm having a no dns server problem on my time capsule

    Hello I'm having this same problem: Sammy Stefanki Apr 11, 2012 2:20 PM  Hi everyone, I just bought a new AirPort Express and Comcast is my ISP. I ditched my old Belkin wireless router, connected the Comcast modem directly to my AirPort Express, and

  • Will Snow leopard run on mac 8,1

    OsX 10.5 originaly and bought the snow leopard upgrade disks Had no problem installing but some of the software would not run.! Went to websites and found some work arounds. Specifically i was using virtual box to run win xp and now it will not allow

  • Can't see pdf files inside folder when logged in to my profile

    When logged into my computer, I can see all the pdf's inside a certain folder just fine. but when i log into an intern computer within our network I cannot see those files. the folder just appears empty. The intern however, when logged in as herself

  • Find psd file from pshop in LR3

    I edited a file in photoshop (CS4) "saved" not "save as" and imported it back into LR3 file was imported as DSC5677.psd while the original is DSC5677JPG.  I cannot see the psd file in either library or develop models. How do I find/view the file?

  • How to clear text message storage

    how do I  clear text message storage off my iphone 5s