VBAP is hving 3 items, while VEDA only 1 for the same VBELN ????

Hi Experts,
1 - Why the Item # is 000 in VEDA (Contract Data)table, while its (item #) is 10 in VBAP for the same VBELN and for the (very first) same item?
And in some cases,
2  -The VBAP is hving (say) 3 items, while in VEDA only 1 item for the same VBELN?
thanq.
Message was edited by:
        Srikhar

ThaQ sESHU;
UR STATEMENT:
<i>In my system i have 000,010 Items ,this table will not have many items ,maximum one item,while selecting data btw VEDA and VBAP ( Keep VBELN is common field ,do not keep item number )</i>
but, in my case, the STKEY differs based on Item #.
say, Item 10----> stkey = A
while, say, Item 20----> stkey = B
So, I forced to mention the POSNR too! So, my SQL is,
IF WA_VBAP-POSNR = 10.
SELECT SINGLE VLAUFK
FROM VEDA
INTO WA_VLAUFK
WHERE VBELN = WA_VBAP-VBELN
AND ( VPOSN  = 000 OR VPOSN = WA_VBAP-POSNR ).
endif.
Any comments?
thanq.

Similar Messages

  • Alert 'There were problems downloading some purchased items' won't clear for the same 6 songs.

    Alert 'There were problems downloading some purchased items' won't clear for the same 6 songs (see screenshot). Every time I download something new this alert comes up, yet when I check for available downloads there aren't any (see second screenshot). Also the 6 songs that are being flagged as having problems are already downloaded to my library, so literally it's just the alert/ notification that seems to be stuck. I've tried signing in and out of iTunes, re-installing itunes, re-starting the computer, emptying the cache etc, and but everytime I sign back in or re-open itunes the alert comes straight back up and it's driving me insane.
    Can anyone help either clear the alert or stop it so that it doesn't pop up every time I try and download something else??

    P.S the error message i got during the download is (err = - 5000)
    Thanks in advance

  • Display discounts and surcharges  for the same vbeln in the same row

    hi experts
    i have to display one discount and surcharges for one vbeln, posnr and one material,
    i have used konv-kschl for condition type and konv-kwert for condition value.
    in my output the conditions what i have given for discounts and surcharges its matching and displaying in different lines for the same vbeln and posnr. usually i should get one line of outputfor one vbeln, but iam getting 3 times repeated
    (one without discounts, surcharges,
    second : same vblen, posnr with discounts,
    third : same vblen, posnr for surcharges )
      please modify the internal table and  conditions below what i have given in my object.
    DATA : BEGIN OF it_konv OCCURS 0,
    knumv LIKE konv-knumv, "Number of the document condition
    kschl LIKE konv-kschl, "Condition type
    kwert LIKE konv-kwert, "Condition value
    kbetr LIKE konv-kbetr,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF it_konv.
    LOOP AT it_konv INTO wa_konv.
    CASE wa_konv-kschl.
    WHEN 'ZD01' OR 'ZD02' OR 'ZD03'.
    wa_konv-discounts = wa_konv-kwert.
    WHEN 'ZEXP' OR 'ZEXW' OR 'ZCAF' OR 'ZCAP' OR 'ZCAQ'
    OR 'ZS01' OR 'ZS02' OR 'ZS03'.
    wa_konv-surcharges = wa_konv-kwert.
    WHEN OTHERS.
    DELETE it_konv WHERE kschl = wa_konv-kschl.
    ENDCASE.
    MODIFY it_konv FROM wa_konv TRANSPORTING discounts surcharges.
    CLEAR wa_konv.
    REFRESH wa_konv.
    ENDLOOP.
    As per one of the abap expert who responded to my query is the following.
    DATA : BEGIN OF it_konv OCCURS 0,
    knumv LIKE konv-knumv, "Number of the document condition
    kschl LIKE konv-kschl, "Condition type
    kwert LIKE konv-kwert, "Condition value
    kbetr LIKE konv-kbetr,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF it_konv.
    DATA : BEGIN OF wa_konv OCCURS 0,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF wa_konv.
    move '1' to it_konv-knumv.
    move 'ZD01' to it_konv-kschl.
    move '1200' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    move '2' to it_konv-knumv.
    move 'ZEXP' to it_konv-kschl.
    move '1300' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    move '3' to it_konv-knumv.
    move 'ZEXP' to it_konv-kschl.
    move '1400' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    LOOP AT it_konv.
    MOVE-CORRESPONDING it_konv to wa_konv.
    CASE IT_konv-kschl.
    WHEN 'ZD01' OR 'ZD02' OR 'ZD03'.
    wa_konv-discounts = IT_konv-kwert.
    WHEN 'ZEXP' OR 'ZEXW' OR 'ZCAF' OR 'ZCAP' OR 'ZCAQ'
    OR 'ZS01' OR 'ZS02' OR 'ZS03'.
    wa_konv-surcharges = IT_konv-kwert.
    ENDCASE.
    COLLECT WA_KONV.
    CLEAR wa_konv.
    ENDLOOP.
    But to try according to the above, i dont have the values for kwert, i know only the condition type (KSCHL). based on this how can i solve my problem
    please clarify
    thanks in advance

    Refer to the suggestion given by Naimesh here Can we modify a sub-total in ALV making use of function GET_GLOBALS_FROM_SLVC_FULLSCR and the method GET_SUBTOTALS. You can see the parameter ep_collect01 refered in case of subtotals. Can you please check ep_collect00 for grand total in your case.
    As said about EP_COLLECT00,here goes a classic example Modify grand total in ALV GRID
    BR
    Keshav
    Edited by: Keshav.T on Sep 21, 2011 9:39 AM

  • Header Details to be Printed only for the line item details.

    Hi All,
    I have the following requirement.
    I have Page1 with the Logo, Header Window, Vendor Window, Send Invoice To, Delivere Invoice To and Main Window. Main Window Starts from the middle of the page. In the Page2 i have Logo, Header window and Main Window. In the Page3 i have only Main Window.
    In the Footer of the Main Window i have Placed the Terms and conditions which should always be Printed in the New Page. So in the footer i have given a command "Go to New Page " and given the page as Page3.
    The requirement is Logo,and Header Window should appear only for the Line items and not for the Terms and conditions.
    For the Page1 i have given the Next Page as Page2. Suppose if there is only one line item then it Prints in the first Page itslef and the control flows to the Page2 and since in the page2 i have given the condition for the Logo and header window to print only if line item is more than 1 and since Main Window is starting from the middle there is a blank Space appearing in the start of the page.
    The command i have given in the footer to trigger new page that is page3 is not getting triggered. If there are more than one line item then its printing the logo and header window and so there is no blank space appearing and it is working fine.
    Please let me know how to avoid this blank space and move my main window to the start of the Page if there is only one line item.
    Thank you.

    Dear Vasudha,
    I am a little bit confused regarding your query,
    "In the Footer of the Main Window i have Placed the Terms and conditions which should always be Printed in the New Page. So in the footer i have given a command "Go to New Page " and given the page as Page3. "
    When you say footer of main window does it mean , that you are using a table inside your main window and the command node your have inserted is in the footer of the table ?.I hope it is, because my suggestion is based on this assumption.
    Well my suggestion for your issue is,
    1.I  hope you are aware we can trigger a next page in two ways, one by setting the next page static attribute & second using  the command node which you have used.In your case you will have to use a combination of both.
    2.I feel your First page design is ok. Set its static next page attribute to PAGE2. Similarly set the static next page attribute for PAGE2 as PAGE2 itself. This should take care of your table which you have placed in the main window. If the table contains only one lineitem it will get over in the first page itself. If the lineitems are more in the table, it will automatically triggerPAGE2 (since static next page attribute for PAGE1 is PAGE2)  and the remaining line items will be displayed. Now no matter how many lineitems you have ,PAGE2 will be triggered repeatedly(since static next page for PAGE2 is PAGE2 itself) until the entire data in your table is displayed.
    In this way your requirement of printing the logo and header windows for the data lineitems only will be fulfilled.
    3.Now the last catch in your case is the printing of PAGE3(The terms and condition page) on an entirely new blank page.
       In the footer section of the table which you have used,  use a command node set to PAGE3.  After the command node and under the same  footer section now insert your terms and condition lineitem.
    Also Check the "at End of table" checkbox and uncheck " AT PAGE BREAK" under OUTPUT OPTIONS tab for the footer section.
    So now this footer section will be triggered only once after all the data in the table is displayed
    4. So now if there is only one lineitem, before the default second page is triggered the command node will trigger the PAGE3 and the terms and condition will be displayed.Else if there are more lineitems the page2 will be triggered again and again and finally when all the lineitems are over, the footer of the table will get triggered. So the command node will take you to the PAGE3 wherin the terms and condition will only be displayed.
    Hope this helps.
    Regards,
    Riju

  • Transaction type to dispose the asset only for the depn areas 01 and 02

    One of the Company codes XXXX plant XXXX has an isuue for asset # XXXXXXXXXX-0 this asset was partially retired in Nov.2008 and now its acquisition value is JPY312,428
    which should not be an asset under US GAAP but qualify for asset under Tax book . So it needs be removed from US and JCC book(01 and 02 area) but keep the record on the Tax book(area 15).
    Is there any transaction type to dispose this asset only for the 01 and 02 area but keep the historical data for 15 area?
    Thanks for helping in advance

    Can I suggest you a way to handle this? Just give a try and see whether  it works for you or not.
    Post a Credit entry to the Asset only to the area 01 and 02. Please follow the below steps before you do this.
    1. Go to main SAP screen => System => User profile => Own data => Parameters
         Add parameter ID FAA_FB01_AREA_SWITCH (Turn On Value Entry at Area Level for FB01) and mark "x" against it in Parameter value. Save this changes.
    2. Go to F-02, Enter the Asset number (posting key 75 and transaction type 105, which ever you feel like) and then in the next screen, enter the amount. Here in this screen, you will find a tab named area values. Click that tab and change the values Area 01 & 02 to $0.01 and leave the Area 15 as it is. Enter the appropriate dr line item and save the document.
    3.Go to AW01N and see tha values against each of the areas.
    please revert in case you have any questions.

  • Same material can exist on multiple line items for the same order.

    Hi
    Is there any specific customising setting or web shop setting through which we can restrict user to add same material on multiple line items for the same order ?
    Regards

    No.
    But if this is a must requirement, you can do an elaborate check during order save in ORDER_SAVE BAdI and return error. So, it will be only during order save.
    Eawar Ram
    http://www.parxlns.com

  • MIRO should be allowed only for the accepted Qty (QC accepted qty)

    Hi Friends
    I have one more requirement ,
    MIRO should be allowed only for the accepted Qty (QC accepted qty) or Subcontract MIRO should be allowed only for the quantity accepted by QC
    with QM control key in material master(QM view) we can block for payment,
    but  my query is  MIRO should not be saved (message should come qty still lying in Quality inspection stock)
    Please let me know the settings,
    Thanks & Regards
    Gajendranath

    Hii,
    Yes it is possible to restrict Invoice passing in MIRO if the Stock is in Quality stock / Blocked stock. The concept is while doing MIRO, u can validate the criteria by clicking simulation tab. U can get the things in BADI (Business ad in function) with the BADI object name as "Invoice_update".
    The working is when the material is in quality stock & If ur doing MIRO for the same material, then system will pop up the message that "material with "X" qty is in quality stock" Invoice cannot be made. System does'nt allow u to pass the Invoice unless the stock is cleared from the quality. Even for the blocked stock we can simulate these error pop message.
    with regards,
    K.Lokesh.

  • What's all this about? [Question only for the Super Elite]

    Tue Apr 28 13:41:59 2009
    panic(cpu 1 caller 0x001A9C68): Kernel trap at 0x00000000, type 14=page fault, registers:
    CR0: 0x8001003b, CR2: 0x00000000, CR3: 0x00d05000, CR4: 0x00000660
    EAX: 0x0714af00, EBX: 0x5bb17ef0, ECX: 0x0714afcc, EDX: 0x0f8a3b00
    CR2: 0x00000000, EBP: 0x5bb17ed8, ESI: 0x07b6e600, EDI: 0x0714af00
    EFL: 0x00010206, EIP: 0x00000000, CS: 0x00000008, DS: 0x5bb10010
    Error code: 0x00000010
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5bb17cd8 : 0x12b4f3 (0x45b13c 0x5bb17d0c 0x1335e4 0x0)
    0x5bb17d28 : 0x1a9c68 (0x464700 0x0 0xe 0x463eb0)
    0x5bb17e08 : 0x1a038d (0x5bb17e20 0x0 0x5bb17ed8 0x0)
    0x5bb17e18 : 0x0 (0xe 0xbc40048 0x10 0x10)
    0x5bb17ed8 : 0x5ba7c4b9 (0x714af00 0x0 0x0 0x0)
    0x5bb17f48 : 0x5ba7c547 (0x714af00 0x7b6e600 0xe548380 0x5b86dcd3)
    0x5bb17f68 : 0x5b86dd5a (0x7b6e600 0x4 0x1 0xfa60800)
    0x5bb17f88 : 0x5b86dd82 (0xfa60800 0x7b6e600 0x1367f3 0xfa60800)
    0x5bb17fa8 : 0x5c0beda6 (0xfa60800 0xe0004004 0x0 0x0)
    0x5bb17fc8 : 0x1a017c (0xfa60800 0x0 0x1a30b5 0x8173f20)
    Backtrace terminated-invalid frame pointer 0
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOUSBMassStorageClass(2.0.4)@0x5c0bc000->0x5c0c5fff
    dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(2.0.5)@0x5b868000
    dependency: com.apple.iokit.IOUSBFamily(3.2.7)@0x5b1eb000
    dependency: com.apple.iokit.IOStorageFamily(1.5.5)@0x5b404000
    com.apple.iokit.SCSITaskUserClient(2.0.5)@0x5ba7a000->0x5ba7ffff
    dependency: com.apple.iokit.IOStorageFamily(1.5.5)@0x5b404000
    dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(2.0.5)@0x5b868000
    com.apple.iokit.IOSCSIArchitectureModelFamily(2.0.5)@0x5b868000->0x5b880fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9G55
    Kernel version:
    Darwin Kernel Version 9.6.0: Mon Nov 24 17:37:00 PST 2008; root:xnu-1228.9.59~1/RELEASE_I386
    System model name: MacBookPro3,1 (Mac-F4238BC8)
    If I'm not mistaken, all the IO stuff is related to USB and FireWire devices, right? I had my iPod plugged in when I got he Kernal panic as well as running Disk Warrior on an external FW HDD.

    "Question only for the Super Elite"
    That is presumptuous on your part. Questions posted on a forum should be directed to ALL.
    And your thread title is really bad. You should put some hint as to what your question is in the title.
    Now that that is out of the way, I would suggest disconnecting all external devices except for your mouse and keyboard, running for a while and then reconnecting external devices one at a time in an attempt to isolate the offending device. I'm inclined to suspect external HDD.

  • I want to give sales discounts only for the first five sales order

    The scenario is that I have to limit the sales discount to first five sales order that is executed, from the 6th the system should not allow any sales discounts

    Hi,
    If I understand your requirement correclty you want to pass discount for a particular item for a customer only for the first five sales orders irrespective of the quantity you sell on this order. As I understand this way of limiting discount by way of the count of sales orders is not possible.
    What is though possible is to limit the discount per customer or per article or per customer and article combination to either a certain fixed value of discount or limit the discount to certain fixed quantity sold for that article.
    The config required is
    Condition type  : Scale basis -Either value scale or quantity scale. Scale type -leave this blank.
    Condition record  :Chose the scale type as "B- To Scale" and at the time of condition record creation you can define your own Calculation type -either fixed amount,percentage,quantity etc.
    All the best.
    Kartik Shah

  • 102 combines all the GR qty for the same part # line item in the PO

    I had a question on the behavior of movement 102 in SAP
    In earlier versions, SAP combines all the GR qty for the same part # line item in the PO both in MIGO & in MB01.
    Is a change in functionality in ECC which combines all the qty or is there any config that we are missing?

    Hi,
    Check your PO item details....is there GR based IV active in your current PO? I know, it should have effect on LIV only but, still trying to see a possibility if it has any impact on GR reversals too....
    Regards
    Message was edited by:
            Gopala Turaga

  • Charged twice for the same items brought onilne

    Beats by Dr DreurBeats Earbud HeadphonesSilver9000016801
    SkullcandyInk39d 2 Earbud HeadphonesRedBlackS2IKDY010
    SonyZX Series OnEar HeadphonesMDRZX110WHI
    TargusAscend Backpack Laptop CaseBlackTSB710US
    TargusDebossed Laptop SleeveGrayBlackTSS600US
    I brought these above items on 11/28/2014 for $108.02. When I pressed "Place Order", a pop up came which said "Their has been an glich while placing the order, please contact the costumer care". So what I did is that I pressed the "place order" again. So this time the order got successfully placed. I then went into my BestBuy account and I could see my order. But when I saw my Bank Account, I was charged twice for the same order. I need your help to sort this problem.

    Hello zuberkampli,
    Thanks for choosing Best Buy when making your Black Friday purchases! I do however apologize, as it sounds like there may have been a slight hiccup when placing your order. I’m familiar with the issue you speak of and I’m happy to review your order details to determine the best route to go here.
    I’ve located your order using your email address on file for the forums and I’m happy to confirm that the issue you endured did not result in a duplicated order. With that, what you’re seeing is a secondary authorization, not a charge, and it should drop off your account in 3-5 business days, if not sooner. In the meantime, I apologize once again for any inconvenience the secondary authorization may cause.
    Thanks for posting on the forums and please let us know if you need any assistance in the future!
    Best regards,
    Brian|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • Two deliveries for the same batch item

    hi
    i have 3 ea with a batch number in my stock. i have created a delivery for 2ea but TO is not yet confirmed. While creating another delivery for 2ea for the same part, it is again picking the same batch in TO. i should have only 1ea, then how it is picking 2ea in TO. is this because I've not confirmed my earlier TO. If I confirm the 2nd TO first, what will happen to the first TO.
    Thanks,
    Satish

    Hi
    If 3 is all you have then you should not be able to create a to for two if you already have an open to for two. I suggest you double check all of the data like the batch number that the second to is picking
    Do you have this material anywhere else and also you should check wether the material and/or the storage type is allowed to go negative? If this is the case then you can pick as many as you like.
    If ypu allow negative stock then you will have this problem.
    Negative stock should only be allowed in Interin st types 9xx
    I hope that this helps
    Frenchy

  • My husband just got an iphone. I've had mine for a while.  We use the same email address so I though we could use the same apple id and password.  But now it appears everything on my phone also shows up on his phone and vis versa, even "Notes."  Not good.

    My husband just got an iphone. I've had mine for a while.  We use the same email address so I thought we could use the same apple id and password.  But now it appears everything on my phone also shows up on his phone and vis versa, even "Notes."  Not good.  How do I unlink them? 

    Read this planning tips:
    iOS 5 & iCloud Tips: Sharing an Apple ID With Your Family

  • Under Options , Applications There are multiple entries for the same item (Acrobat Document). how can I delete the duplicates?

    Under Options, Applications there are multiple entries for the same item. (Adobe Acrobat) . Three show Adobe Acrobat Reader 9.3 and the other shows (ask) or (save file) with no ability to select Acrobat Reader . Is there a way to edit this list to remove the duplicates and
    the incorrect entry? Adobe installed a very quick update today.

    They are all different. Hover your mouse pointer over each of the "Content Type" descriptions and you should see a "tooltip" to see that each has a different description.
    You need to update your plugins. It is important to keep them updated due to continuing security fixes and improvements in those plug-ins:
    * Adobe Shockwave for Director Netscape plug-in, version 11.5 (you '''<u>may</u>''' need to update)
    * Shockwave Flash 10.1 r53
    * Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    #Check your plugin versions: http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Shockwave Flash'''
    #*Use Firefox to Download and SAVE to your hard drive from the link in article below
    #*SAVE to your Desktop so you can find it
    #*After download completes, close Firefox
    #*Click on the file you just downloaded and install
    #**Note: Vista and Win7 users may need to right-click the installer downloaded and choose "Run as Administrator"
    #**Note: Most browsers other than IE will also get updated with this one download
    #**Note: To update IE, same procedure '''<u>but use IE</u>''' to go: http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe
    #*After installation, restart Firefox and check your version again.
    #*'''<u>Download link and other information</u>''': https://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash
    #* Also see: http://support.mozilla.com/en-US/kb/Installing+the+Flash+plugin
    #* Also see (if needed): http://kb2.adobe.com/cps/191/tn_19166.html#main_Uninstall
    #'''Update Java:'''
    #* Download and update instructions: https://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox

  • Last summer I bought a music album from iTunes. I've already transferred all my orders from my units, but somehow iTunes wants me to pay for the same album again. When I try to add it to my wish list it simply tells me that I've already bought that item.

    Last summer I bought a music album from iTunes. I've already transferred all my purchases from my units, but somehow iTunes wants me to pay for the same album again. When I try to add it to my wish list it simply tells me that I've already bought that item.
    And I've already tried to search for downloadable purchases.
    So fact is established, I've purchased this album before but iTunes does not recognize it.
    What to do?

    Hey sorry for the late response but I've been out of town.  I can copy and paste the email responses if necessary or desired, and if it's fixed already this is a moot point anyway, but basically they kept asking me for the order numbers for the two songs I already bought from the specific album I was trying to complete, which I eventually gave them - along with telling them multiple times that the Complete My Album feature wasn't working for ANY album.  They gave me two free song codes to compensate me for the two songs I bought, and then told me to go and buy the album at full price, but the ENTIRE TIME they COMPLETELY ignored that I was telling them that this wasn't an issue with one album but was a larger, seemingly systematic issue that other people were experiencing.  Even after I got the song codes I emailed them back and said AGAIN that this wasn't an isolated feature, and they just sent me the link to the apple Feedback page (http://www.apple.com/feedback/itunesapp.html) and told me to submit my complaint there.  So, technically, my issue was never really "resolved," in that they never fixed the Complete My Album feature that I am aware of - or even acknowledged that anything needed fixing, but I haven't tested it since Sunday.
    If it's working for you, then hopefully they fixed it!  I've noticed they've updated to 10.4.1, but the notes don't indicate they're fixing anything about the Complete My Album feature, so I don't know.

Maybe you are looking for

  • My itouch doesn't recognize our wi-fi?

    I bought our kids an ITouch.  We have an Airport Extreme.  The iTouch doesn't recognize the Network.  I know it works, however, because it recognizes other networks.  My Ipad recognizes our Home Network.  What do we need to do?

  • My Iphone 4s screen cracked by itself!!!

    Hello there, I went to a dinner tonight and my Iphone was in my bag. I took it out and took some pictures it was absolutely fine. I put the phone back in bag and after coming home I took it out and the screen was all cracked!!! I couldnt believe on m

  • Not assigned account in FSV

    HI, Expert I have run F.01 for Balance sheet , when i drill down it show not assign account like first i click on gl account  then company code then it shows not assigned ,can any one explan me how it shows Regards gk

  • Cant create new list in reminders

    I cannot create a new list in reminders (iphone5).  There are lists for each of my email accounts, but I cannot create a new one.

  • OpenVPN Configuration Questions

    So I found the Arch Wiki articlehttps://wiki.archlinux.org/index.php/OpenVPN_Bridge about creating an openvpn bridge network for running games. I have some questions about what some of this does, as now that I've implemented this, if prevents me from