After updating new MIC in QP02 in Back date not showing current date ?

Hi Guru,
I have updated some new MIC and some Changes are made in existing MIC in QP02 on back date. It is showing on same back date with all correction and new MIC but on today's date i.e. current date it is not showing in the system.
any can help me how to get in current date ?
There are some dump error , for these correction i have updated SNOTE 1467234 and 1471534 in Quality server, but no more effect.
Thanks,
Piyush Patel

hi,Premji,
I have updated existing QP in back date i.e. same as when created original date ( expiration date is long i.e. 31.12.9999) , then same thing i wanted to see all updated MIC should be reflect in current date, but it is not coming, so i have updated SNOTE- 1467234 and 1471534 then tried it.It is working fine some how but not as i want.Hence i thing it is solved my problem.
Thanks to you and Mr. Craig for your more suggestion/guidance.
Piyush Patel

Similar Messages

  • TS3276 After updating software yesterday, noticed that sent emails are not showing up in Sent Folder for one of my accounts.

    After updating software yesterday, noticed that sent emails are not showing up in Sent Folder?

    Are you storing Drafts, Sent, Trash and Junk messages on the server via your .Mac account with Mail?
    If so, do you access your .Mac account with an email client on another computer or regularly access your account via webmail on another computer?
    If not, any other reason you need to store Drafts and Sent messages on the server?
    While composing a message with Mail, it is temporarily saved in the account's Drafts mailbox so sounds like something went wrong with the process between finishing and sending the message with Drafts and Sent being stored on the server.
    If you don't have any need for this, better to store Drafts and Sent messages locally on the hard drive with Mail.

  • I can't recall my passcode to my older iPod touch (after the newer one got stolen) and it's not showing up in iTunes, how can I restore it to clear the passcode?

    I can't recall the passcode to my older iPod, iPod touch 2g 8GB, (someone stole my 4g) and it's not showing up in iTunes, is there any other way to do a 'restore' to clear the old passcode and be able to access the iPod? Anyone???

    The only way is to restore the iPOd via iTunes. Have you tried:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    P
    Have yu tried setting your iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Next wold be to place the iPod in recovery mode to see if iTunes will see it. For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • After creating new sales order through BAPI, it is not showing in VA03

    Hi Experts
    I am developing one program to create sales order using FM BAPI_SALESORDER_CREATEFROMDAT2. In output screen it is showing that the new sales order number created with new sales order number. But whenever I want to display the newly created sales order via VA03 it shows an error message SD document 10007547 is not in the database or has been archived but in program output it shows that 10007547 is created. This is in DEV server. Document numbers are generated by the system sequencially, but it is not reflected in database.
    I am also attaching my code below.
    REPORT  z_bapi_salesorder.
    DATA : gt_header LIKE bapisdhd1,
           gt_item TYPE TABLE OF bapisditm,
           gt_itemx TYPE TABLE OF bapisditmx,
           gt_partner TYPE TABLE OF bapiparnr,
           gt_return TYPE TABLE OF bapiret2.
    DATA : gs_item LIKE LINE OF gt_item,
           gs_itemx LIKE LINE OF gt_itemx,
           gs_partner LIKE LINE OF gt_partner,
           gs_return LIKE LINE OF gt_return.
    DATA : v_vbeln TYPE vbeln_va.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 2(30) ord_type FOR FIELD p_auart.
    PARAMETERS : p_auart TYPE auart OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS       : p_vkorg TYPE vkorg OBLIGATORY,
                       p_vtweg TYPE vtweg OBLIGATORY,
                       p_spart TYPE vbak-spart OBLIGATORY,
                       p_sold TYPE kunnr OBLIGATORY,
                       p_ship TYPE kunnr OBLIGATORY,
                       p_matnr TYPE matnr OBLIGATORY,
                       p_menge TYPE kwmeng OBLIGATORY,
                       p_plant TYPE werks_d OBLIGATORY.
    SELECTION-SCREEN : END OF BLOCK b1.
    INITIALIZATION.
      ord_type = 'Order Type'.
    START-OF-SELECTION.
    *Header information data.
      gt_header-doc_type = p_auart.
      gt_header-sales_org = p_vkorg.
      gt_header-distr_chan = p_vtweg.
      gt_header-division = p_spart.
    *Partner information data.
      gs_partner-partn_role = 'AG'.
      gs_partner-partn_numb = p_sold.
      APPEND gs_partner TO gt_partner.
      CLEAR gs_partner.
      gs_partner-partn_role = 'WE'.
      gs_partner-partn_numb = p_ship.
      APPEND gs_partner TO gt_partner.
      CLEAR gs_partner.
    *Item data
      gs_item-itm_number = '000010'.
      gs_itemx-itm_number = 'X'.
      gs_item-material = p_matnr.
      gs_itemx-material = 'X'.
      gs_item-plant = p_plant.
      gs_itemx-plant = 'X'.
      gs_item-target_qty = p_menge.
      gs_itemx-target_qty = 0.
      APPEND gs_item TO gt_item.
      APPEND gs_itemx TO gt_itemx.
      CLEAR : gs_item, gs_itemx.
      CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
        EXPORTING
      SALESDOCUMENTIN               =
          order_header_in               = gt_header
      ORDER_HEADER_INX              =
      SENDER                        =
      BINARY_RELATIONSHIPTYPE       =
      INT_NUMBER_ASSIGNMENT         =
      BEHAVE_WHEN_ERROR             =
      LOGIC_SWITCH                  =
      TESTRUN                       =
      CONVERT                       = ' '
       IMPORTING
         salesdocument                = v_vbeln
        TABLES
         return                       = gt_return
         order_items_in               = gt_item
         order_items_inx              = gt_itemx
         order_partners               = gt_partner
      ORDER_SCHEDULES_IN            =
      ORDER_SCHEDULES_INX           =
      ORDER_CONDITIONS_IN           =
      ORDER_CONDITIONS_INX          =
      ORDER_CFGS_REF                =
      ORDER_CFGS_INST               =
      ORDER_CFGS_PART_OF            =
      ORDER_CFGS_VALUE              =
      ORDER_CFGS_BLOB               =
      ORDER_CFGS_VK                 =
      ORDER_CFGS_REFINST            =
      ORDER_CCARD                   =
      ORDER_TEXT                    =
      ORDER_KEYS                    =
      EXTENSIONIN                   =
      PARTNERADDRESSES              =
      IF v_vbeln <> space.
        COMMIT WORK.
        WRITE :/ 'Document', v_vbeln ,'created'.
        CLEAR : v_vbeln, gt_header.
        REFRESH : gt_partner, gt_item, gt_itemx.
      ELSE.
        WRITE :/ 'Error in creating document'.
      ENDIF.
    Please give the possible solutions for this. What is reason for that update termination.

    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
        EXPORTING
          ORDER_HEADER_IN           = ORDER_HEADER_IN
      WITHOUT_COMMIT            = ' '
      CONVERT_PARVW_AUART       = ' '
       IMPORTING
         SALESDOCUMENT             = SALESDOCUMENT
      SOLD_TO_PARTY             =
      SHIP_TO_PARTY             =
      BILLING_PARTY             =
         RETURN                    = RETURN
        TABLES
          ORDER_ITEMS_IN            = ORDER_ITEMS_IN
          ORDER_PARTNERS            = ORDER_PARTNERS
      ORDER_ITEMS_OUT           =
      ORDER_CFGS_REF            =
      ORDER_CFGS_INST           =
      ORDER_CFGS_PART_OF        =
      ORDER_CFGS_VALUE          =
      ORDER_CCARD               =
      ORDER_CFGS_BLOB           =
         ORDER_SCHEDULE_EX         = ORDER_SCHEDULE_EX
    use bapi_transaction_commit.
    Regards,
    Venkat

  • After updating to iTunes 11.1.3 my music not showing in Match

    Since updating to iTunes 11.1.3 I have to go to the Store and sign out then sign in and start Match before my music shows.
    It was OK before this update.
    Anyone else have the problem?

    I'm having a similar problem, but affecting only mobile devices. After ripping CD to PC, it does show up on Macbook iTunes. However, I can't see latest music on iPhone (match is turned ON.) All other songs (pre-update) are available to stream on phone.

  • Apps not working with docomo after updating new sw...

    hello brother,
    i have updated my nokia c2-00 sw v3.99 .
    After updating new sw v.3.99 my apps not working with tata docomo only .
    Docomo is my personal sim-card.
    What can do for get ride it.
    Solved!
    Go to Solution.

    Hello, Premkoli. Which specific apps are you referring to? Are these apps downloaded from the Store, or preloaded ones? When you say 'my apps not working with tata docomo only', does it mean that these apps work with other SIM cards aside from TaTa Docomo? How did you update your Nokia C2-00? Is it by going to Settings > Phone > Device Updates > Check for updates, or via Nokia Suite?
    Since the issue started after the software update, you can try to reinstall the phone's SW via Nokia Suite. Just download it on your PC, and then connect the phone via a compatible USB cable. After that, launch Nokia Suite, and the go to SW Updates > Device Software Updates > Reinstall current SW. After that, try opening the same apps and see if they'll work with your Docomo SIM card. Get Nokia Suite from this link: Nokia Suite
    Let us know the outcome. 

  • After updating my iphone5, my phone went back to factory setting and now I can't sign in with my apple id because it does not recognise it... Help?!

    After updating my iphone5, my phone went back to factory setting and now I can't sign in with my apple id because it does not recognise it... Help?!

    Yes, my telco is an approved carrier. If my phone was brand new, I think so, they opened it in front of me.. I really couldn't remember it was 1.4 years ago. It did seem new.
    Well it says, "_____" cannot be used to unlock this iphone. I've tried both my apple ids but it didn't work.

  • My iPhone 5 hanged after updating new software version

    My iPhone 5 hanged after updating new software version

    paulette3163 wrote:
    When I plug my phone into my laptop and open itunes,
    Make sure you have the Latest Version of iTunes Installed on your computer ( v 11.1)
    iTunes free download from www.itunes.com/download

  • Hi, after updating my iphone since 2 weeks back now i am facing a battery problem i charce fully my iphone and by the end of the day my iphone shuts down it needs to be charged again and if i didi some calles it leaks after few hours. Please adivse me.

    Hi, after updating my iphone since 2 weeks back now i am facing a battery problem i charce fully my iphone and by the end of the day my iphone shuts down it needs to be charged again and if i didi some calles it leaks after few hours. Please adivse me what to do.

    I final piece for me in the jigsaw following on from this
    http://www.care4pcs.co.uk/2012/10/how-to-be-happy-gmail-user-on-iphone-or.html 
    is to turn off wifi when you do not need it. When I leave the house I turn off wifi, because the majority of the times when my iPhone has got very hot and crashed is when I am away from home. I suspect that if the iPhone is in the vicinity of public wifi (wheather secure or not secure) it will try and connect, even if you have 'automatically join known networks' set to off. This is easy of course if you have an unlimited data contract for your iPhone. I may be wrong, but it is working for me. It makes sense for me because it is another way of reducing the work the processor (and battery) has to do and therefore reduces the chance of overheating.
    Having said that, I never had this problem with my iPhone 4. I now have a 4S.
    Try it. Hope it works for you.

  • The playlists I created have disappeared after updating to iOS 7.1. I have not backed up this phone to a computer - only backing up with iCloud. Is there a way to recover my playlists?

    The playlists I created have disappeared after updating to iOS 7.1. I have not backed up this phone to a computer - only backing up with iCloud. Is there a way to recover my playlists?

    Dictation in text message = Does not work
    Speaking with Siri via activated with Home button = Does not work
    Speaking with Siri with "Raise to Speak' = WORKS
    Voice Memos = WORKS
    Speaker phone on call = WORKS
    Voice control instead of Siri = WORKS
    I've tried hard reset, settings reset, wiping and reloading backup...nothing. Was hoping 7.1 might offer some respite, but no dice....
    I was hoping 7.1 would somehow solve it.

  • After update new OS 10.10 can't detect camera

    after update new OS 10.10 can't detect camera

    Hi..
    Try the troubleshooting steps for the built in iSight camera here >  How to Troubleshoot iSight
    iWork software must be purchased from the App Store.

  • After updating to Firefox 5 my Realplayer Recorder is not working due to that add on not being compatible. How do I get this to work again?

    After updating to Firefox 5 my Realplayer Recorder is not working due to that add on not being compatible. How do I get this to work again?

    Blue
    It sounds like you restored from an old back-up.  Did you back-up just before your software update?  It will use your last one and if your last back-up was a ywear old then it will use that one.
    In general, if you are getting these messages on your iPhones select logout (when you get that Apple Id request) and then log back in with your newer ID.
    Sorry for your losses.
    Cheers

  • After update to IOS 6 on my Ipad2 it not possible to go to month view of March 2013 in the calendar app?

    after update to IOS 6 on my Ipad2 it not possible to go to month view of March 2013 in the calendar app?
    on my Ipone with IOS there is no problem
    is Apple aware of this problem?
    When will it be solved?

    Packrat74 wrote:
    Probably the app developers fault but then Apple needs to warn people about compatiblity of apps... I will add a review note to TOP 3 to warn people
    If it is an app compatibility issue - it IS the app developers responsibility to make sure that they update their apps in order to work with the new iOS. Apple owes no users a warning whatsoever. Common sense tells me that a very old app that has not been updated for the last two iOS updates just might not make the grade in the third iOS release since the app came out.
    I can't even find an App called Top 3 Solitaire in the U.S. App Store. Perhaps the app was so old and it hasn't been updated in so long so it was pulled from the App Store.

  • I have an iphone 4 and after updating it to the ios5 software, it will not allow me to activate nor allow me to leave the setup page. i cannot even restore it. does anyone know what to do?

    i have an iphone 4 and after updating it to the ios5 software, it will not allow me to activate nor allow me to leave the setup page. i plugged it into itunes and it is stuck there too... i cannot even restore it. does anyone know what to do?

    I have had this same issue but thankfully fixed it. Follow he steps below:
    Sync your iPhone with you iTunes therefore your info is backed up. Unplug your phone.
    Go to Settings > Reset > Erase All Content and Settings
    Once your phone has reset and come back on answer the question until it asks if you want to back up from itunes Click this then plug your phone in.
    After everything has sync'd back to your phone everything should work fine.
    Hope this helps.

  • TS4036 My camera roll will not restore from iCloud after updating my iPhone 4 to iOS 6. It shows I have 1.7 gigs of photos stored on camera roll but none are appearing on my phone. Everything else restored from iCloud.

    My camera roll will not restore from iCloud after updating my iPhone 4 to iOS 6. It shows I have 1.7 gigs of photos stored on camera roll but none are appearing on my phone. Everything else restored from iCloud. When I go to iCloud.com my photostream is not there.

    A response I put together from another post. Also going into iTunes and choosing to sync phone to iCloud then back "this computer" sometimes works.
    First thing.. Stop where you are. Don't try to sync, update, hard reset, iCloud... Just stop.
    Check on your phone under 'SETTINGS' 'GENERAL' USAGE'. It should show some value for PHOTOSTREAM. Also, connect to iTunes and you will notice at the bottom of your phones summary page that there is a large amount of 'OTHER' data.
    I used third party software called iExplorer (formerly iPhone explorer). In this program you select 'MEDIA FOLDER', then 'DCIM'. In the various apple folders (IE: 101APPLE) you should be able to preview your photos and copy them to your desktop.
    From there sync them back to your device through iTunes or whatever method you use.
    There is a simpler solution I'm sure, which may involve using iExplorer to delete some .plist files then restart the phone and let it rebuild. I'm going to try it myself AFTER I've finished copying all the photos to my MAC
    Hope this helps.

Maybe you are looking for

  • Problem with Persistent Object as Reference Attribute of Persistent Object

    Hello All, I have a problem with a persistent class that contains a reference attribute to another persistent class.  I can write the reference object attribute to the DB but when I read the reference attribute back from the DB the object is null.  A

  • Dynamic directory and file name

    Hi I have requirement of dynamic file name and dynamic directory with condition based on doctype from source I have used the following code and for file and directory with two different udfs. If I am using only file it is working but not with the dir

  • White box behind flash when in html

    Hi. I've created a flash with a black background and inserted in my html also with a black background. The problem is that when I click through the pages, for a half second or so, the area behind the flash is white (and stands out like a sore thumb).

  • Xrpm Implementation in a Global Scenario

    Hi, I am trying to understand a Global implementation scenario for xrpm. If I have 2 regions with SAP implemented on seperate instances and I want to implement xrpm 4.0 Except for the fact that we have to consider sizing . The business scenario we ar

  • Where are keywords stored

    How do I restore keywords to the keyword HUD? I deleted all keywords from the HUD, edited the keyword list and imported the edited list. I assumed that I could repopulate the keywords by updating the metadata from master (these are referenced files),