Gurus...need URGENT help...Please understand...?

Gurus,
I had written a BDC program for FV50 transaction..As it is an ENJOY transaction once u enter the company code it doesnt ask for the company code again if second time u go to this transaction...so to do this i made changes in the EDITING options and was able to do a BDC program for parking FI GL document..I made this BDC program a part of a Function module...when i call this FM from another program and pass the correct parameters it does not work...i have tried all the the tweaks but it doesnt work...it gives a error NO batch input available for screen SAPFM050 1001...
please help...
What shud i do...please suggest...
Thanks
Sam
Message was edited by:
        Sam williams

Eric, I have done that and included that functionality in the code also....let me attach my code:
************************BDC PROGRAM**************************************************************
  PERFORM bdc_dynpro  TABLES t_bdcdata USING 'SAPLACHD' '1000'.
  PERFORM bdc_field TABLES t_bdcdata USING 'BDC_CURSOR'
                                          'BKPF-BUKRS'.
  PERFORM bdc_field  TABLES t_bdcdata USING 'BDC_OKCODE'
                                                '=ENTR'.
  PERFORM bdc_field TABLES t_bdcdata USING 'BKPF-BUKRS'
                                wa_document_header-comp_code.
  PERFORM bdc_dynpro  TABLES t_bdcdata USING 'SAPMF05A'
                                wa_document_header-comp_code.
  PERFORM bdc_field  TABLES t_bdcdata USING 'BDC_OKCODE'
                                                '=PBBP'.
  PERFORM bdc_field  TABLES t_bdcdata USING 'ACGL_HEAD-BLDAT'
                                wa_document_header-doc_date.
  PERFORM bdc_field  TABLES t_bdcdata USING 'ACGL_HEAD-LDGRP'
                                             var_ledger.
  PERFORM bdc_field  TABLES t_bdcdata USING 'ACGL_HEAD-BUDAT'
                                wa_document_header-pstng_date.
  PERFORM bdc_field  TABLES t_bdcdata USING 'ACGL_HEAD-XBLNR'
                                wa_document_header-ref_doc_no.
  PERFORM bdc_field  TABLES t_bdcdata USING 'ACGL_HEAD-BKTXT'
                                wa_document_header-header_txt.
  PERFORM bdc_field  TABLES t_bdcdata USING 'ACGL_HEAD-BLART'
                                wa_document_header-doc_type.
  PERFORM bdc_field  TABLES t_bdcdata USING 'BDC_CURSOR'
                                'ACGL_ITEM_GEN-GEN_CHAR2(02)'.
******Loop at the BDC Table to fill each line of items
  LOOP AT t_bdc_document_item_main INTO wa_bdc_document_item_main.
    idx = idx + 1.
    ch3 = idx.
    CONCATENATE 'ACGL_ITEM-HKONT('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata      USING fname
                             wa_bdc_document_item_main-v_hkont.
    CONCATENATE 'ACGL_ITEM-SHKZG('ch3')' INTO fname.
*****Transaction takes only H or S for Debit/Credit Indicator
    IF wa_bdc_document_item_main-v_shkzg = 'C'.
      var_shkzg = 'H'.
    ELSEIF wa_bdc_document_item_main-v_shkzg = 'D'.
      var_shkzg = 'S'.
    ENDIF.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                          var_shkzg.
    CONCATENATE 'ACGL_ITEM-WRBTR('ch3')' INTO fname.
    MOVE: wa_bdc_document_item_main-v_wrbtr TO amount.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                             amount.
    CONCATENATE 'ACGL_ITEM-SGTXT('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_sgtxt.
    CONCATENATE 'ACGL_ITEM-PRCTR('ch3')' INTO fname.
    PERFORM bdc_field   TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_prctr.
    CONCATENATE 'ACGL_ITEM-KOSTL('ch3')' INTO fname.
    PERFORM bdc_field   TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_kostl.
    CONCATENATE 'ACGL_ITEM-BEWAR('ch3')' INTO fname.
    PERFORM bdc_field   TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_bewar.
    CONCATENATE 'ACGL_ITEM-VBUND('ch3')' INTO fname.
    PERFORM bdc_field   TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_vbund.
    CONCATENATE 'ACGL_ITEM_GEN-GEN_CHAR1('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_yylob.
    CONCATENATE 'ACGL_ITEM_GEN-GEN_CHAR2('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_yycsg.
    CONCATENATE 'ACGL_ITEM_GEN-GEN_CHAR3('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_yyprg.
    CONCATENATE 'ACGL_ITEM_GEN-GEN_CHAR4('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_yydch.
    CONCATENATE 'ACGL_ITEM_GEN-GEN_CHAR5('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_yymay.
    CONCATENATE 'ACGL_ITEM-ZZITY('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzity.
    CONCATENATE 'ACGL_ITEM-ZZSOU('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzsou.
    CONCATENATE 'ACGL_ITEM-ZZPRO('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzpro.
    CONCATENATE 'ACGL_ITEM-ZZACY('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzacy.
DI Fields added on 9/21/07
    CONCATENATE 'ACGL_ITEM-ZZDIRNNAM('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzdirnnam.
    CONCATENATE 'ACGL_ITEM-ZZDIRNTYP('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzdirntyp.
    CONCATENATE 'ACGL_ITEM-ZZDIRNNUM('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzdirnnum.
    CONCATENATE 'ACGL_ITEM-ZZDIFLNAM('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzdiflnam.
    CONCATENATE 'ACGL_ITEM-ZZDIJRNID('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzdijrnid.
    CONCATENATE 'ACGL_ITEM-ZZDIJRNLNK('ch3')' INTO fname.
    PERFORM bdc_field  TABLES t_bdcdata USING fname
                                  wa_bdc_document_item_main-v_zzdijrnlnk.
End of Changes.
    options-defsize = 'X'.
    options-dismode = 'A'. "N - No Display = A - Display All
   options-nobiend = 'X'.
    options-nobinpt = 'X'.
  ENDLOOP.
SET PARAMETER ID 'BUK' FIELD SPACE.
  CALL TRANSACTION 'FV50L' USING t_bdcdata MESSAGES INTO
  t_messages OPTIONS FROM options.
  LOOP AT t_messages INTO wa_messages.
    ADD 1 TO l_lines.
    CALL FUNCTION 'MESSAGE_TEXT_BUILD'
      EXPORTING
        msgid               = wa_messages-msgid
        msgnr               = wa_messages-msgnr
        msgv1               = wa_messages-msgv1
        msgv2               = wa_messages-msgv2
        msgv3               = wa_messages-msgv3
        msgv4               = wa_messages-msgv4
      IMPORTING
        message_text_output = wa_result-message.
    MOVE:wa_result-message TO wa_return-message,
         wa_messages-msgtyp TO wa_result-result_flag,
         wa_messages-msgv1+0(10) TO wa_result-document_number,
         wa_messages-msgv2+0(4) TO wa_result-comp_code.
    APPEND wa_result TO tb_result.
    APPEND wa_return TO t_return.
    CLEAR: wa_result,
           wa_return.
  ENDLOOP.
  return[] = t_return[].
ENDFUNCTION.
Form Definition for new screen
FORM bdc_dynpro TABLES it_bdcdata STRUCTURE bdcdata USING program
dynpro.
  DATA: wa_bdcdata TYPE bdcdata.
  wa_bdcdata-program = program.
  wa_bdcdata-dynpro = dynpro.
  wa_bdcdata-dynbegin = 'X'.
  APPEND wa_bdcdata TO it_bdcdata.
ENDFORM. "BDC_DYNPRO
Form Definition to insert new field
FORM bdc_field TABLES it_bdcdata STRUCTURE bdcdata USING fnam fval.
  DATA: wa_bdcdata TYPE bdcdata.
  IF fval <> space.
    CLEAR wa_bdcdata.
    wa_bdcdata-fnam = fnam.
    wa_bdcdata-fval = fval.
    APPEND wa_bdcdata TO it_bdcdata.
  ENDIF.
ENDFORM.                    "BDC_FIELD

Similar Messages

  • Need Urgent help please? I need to restore from a previous iphone backup.

    Oops, I admit it - I messed up but need help please?? I received a replacement iphone today. My broken iphone OS and my itunes had the latest software updates and I did a full backup before going to the store to get the rerplacement. However, when I got home with the replacement iphone and plugged it in, it asked if I wanted to update the OS on it. I made the mistake of saying yes. It then made a backup of the empty factory settings from the new replacement and restored from that rahter than the backup I made before going to the store. Yes I know I should have said no and just did the restore which would have resotred my previous backup that I made before going to the store. Then after everything would be allright I could have told it to update the OS.
    You can slap my in the face or I will do it myslef for making such a stupid mistake. All ready did the "I should have had a V" thing to my forehead.
    After seeing the restore was fromthe factory settings rather than my earlier good backup, I went into my documents and drilled down to the mobile sync backup and saw that one of the three folders (with giberish as a title) has a lot of information with the date and time I did the backup before going to the store.
    Could I possibly delete the later (factory setting backup) folder and then do a restore to get my good backup onto the iphone? I didn't do that yet in fear that it might mess something else up on the iphone and I wanted to check with you experts here first for guidance and assistance, PLEASE?
    I'll be anxiously awaiting any help you can give!
    Thank you!!

    rwmac22 wrote:
    Hopt and OneOrangeTree, Thank you both very much for replying!!
    It took me a long time to get back to the dissucison group because I tried both of your suggestions which therfore had to do about 4 restores. They take quite a while (about 50 minutes each actually). Your help got me half way there and is very apprecaited! I did manage (with your excellent help) to get most of my backup put onto the replaced iphone. the photos, music, and videos didn't get put over. I think I can move those back over by making sure they are selected in the seperate tabbed screens for the iphone. However, I can't get to those screens because every time I connect the iphone now, it brings up the "set up your phone screen". The one with the "an iphone has been previously synced with this compter" setup as new phone or restore from ....
    Well I did the resotre from 3 times and that page still comes up when I plug in the iphone. Yes, I did close itunes, reboot the PC, and powered off the iphone and then brouhgt it back up before connecting (all several times), but itunes still takes me to the same "setup iphone screen".
    Can you help me to get it to the standard iphone screen and there I will make sure the selected items are checked and do a sync.
    Please know I do appreicate your kind assistance so far and hope someone can get me the rest of the way!
    The "Backup" do not store your Applications, Music, Video's. It saves your settings, your application preferences, etc.

  • Need Urgent Help Please!

    HI There,
    I have been struggling with JavaScript code for days now, and this is my last resort! Please help...send replies or futher information to [email protected]
    I am trying to create a JavaScript slide show with links for Next Slide, Previous Slide and Home Slide.
    Is it possible for you to view my page and tell me what I am doing wrong. I have looked at this page for hours and can't figure it out, I must be missing something or have something in the wrong order, but can't figure it out...please help....thanks...
    I think I need someone to explain the EXACT code for this page as it would appear in the page so it displays correctly.
    If you can figure this out, I have 2 more I need help with too...
    Thanks so much, Much appreciated...but this is a URGENT request. Need a quick answer that will work!
    Any ideas????
    Here is my code:
    <HTML>
    <HEAD>
    <TITLE>JavaScript Slide Show - PhotoAlbum</TITLE>
    <SCRIPT LANGUAGE="JavaScript">
         var PhotoAlbum = new
         Array("bunny_lady.gif","business_lady.gif","running_lady.gif","color_lady.gif")
         var PicIndex=1
         var pictures=PhotoAlbum.length
         function NextImage ( ) {
         if (PicIndex < pictures) {
         PicIndex++
         document.ImgAlbum.src=PhotoAlbum[PicIndex-1]
         function PreviousImage ( ) {
         if (PicIndex > 1) {
         PicIndex--
         document.ImgAlbum.src=PhotoAlbum[PicIndex-1]
         function home ( ) {
         document.ImgAlbum.src=PhotoAlbum[0]
    </SCRIPT>
    </HEAD>
    <BODY BACKGROUND=BACK02.jpg TEXT=Blue>
    <CENTER>
    <H1 ALIGN=Center> The Vacation Photo Album</H1><BR>
    <H3 ALIGN=Center> Click on Previous or Next to view pictures in my Slide Show </H3><HR><HR>
    <IMG SRC=bunny_purse.gif NAME= ImgAlbum Width=400 Height=270>
    <BR>
    <HR>
    [First Image]
    [Previous Image]
    [Next Image]
    </CENTER>
    </BODY>
    </HTML>

    And when you do post to the Javascript forum (you do know that Java != Javascript, right), you might want to try less of a "do my homework for me" approach. I don't know about those forums, but if they're anything like here, they'll expect more effort and more specific questions from you than just "this doesn't work, please fix it completely right now." I also doubt they'll be any more impressed with your urgency than folks here usually are.
    &#12472;

  • One edge animate oam file with sound no work in muse, I need urgent help please

    (I speak spanish and I translate this with google translate, sorry.  Try to understand)(I can read english)
    A sound file oam place it in adobe muse does not work, how can I do. In works right edge Animate and when I preview in the browser looks perfect and 100% working well but when I step by Muse does not work. When I pass the file to Muse, you can see placed in the page design, but when I preview I do not see anything in the file that I placed. When I tried it without sound if it worked but after you add sound and replaced it with the new file (delete the old file and place the new) no lifts. I implementación.oam public with package, and then drag the file created page design muse.

    Try unplugging the AC adapter, removing the battery, then holding the power button down for a minimum of 30 seconds.  Then plug the AC back in and try to power it up.  If it does, good.  If not, repeat the proceedure only time only plug the battery back in.  If this still doesn't work you'll need to send it in to either Toshiba or to some repair shop that has an EProm burner such as http://www.aqstech.com/ as you won't be able to fix it at home.
    And next time DO NOT FLASH FROM WITHIN WINDOWS.  NEVER, EVER, EVER, UNDER ANY CIRCUMSTANCES FLASH A BIOS UNDER WINDOWS.  Always flash a bios from an actual Dos Prompt.  The BIos File from Toshiba provides instructions inside the Archive once you decompress it on creating a Bios Flash CD (and you can use a ReWritable CD-RW so you don't waste a disk) that should be used. 
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

  • What should i do i cant install time machine back up .I need urgent help please :(

    Hey guys ! please help me tomorrow is my exam and I don't have my laptop for study . A while ago I needed windows on my mac and while installing it via boot-camp I somehow managed to wipe whole mac partition even recovery so I was left with only windows on my mac.
    My Condition :- No recovery     PS. I have external recovery on my USB. I saved those files from internet recovery was tired of downloading 1GB every time to get into recovery. )
    No mac OS
    no recovery partition .
    so now the problem is I always thought that I do have a time machine backup on my hard disk so ill just install it simple .
    I tried internet recovery ... then got into recovery ... tried to install my time machine backup and it said .. [ ERROR CREATING RECOVERY PARTITION ]
    I had the time machine backup of OSX mavericks .
    when I tried the reinstall OSX option it said it will download mountain lion . I was like fine download it whatever .. i tried the download but every time I try it get stuck at a point with some error . (maybe cause of my slow internet )
    I have reinstalled the windows 8.1 but I cant use X-CODE on it .
    what should I do
    I want my OSX backup
    my friend have a ISO of Mavericks and mountain lion both will they help ?

    Recovery Partition Creator 3.8
    Recovery Partition – Recreate Without Reinstalling
    Recovery Partition – Recreate Without Reinstalling (Requires Installer)
    When you go to Internet Recovery use Disk Utility to repair the drive and repair permissions. Then erase the partition, formatting it as Mac OS Extended (Journaled). Click the option button and select GUID. Then try to install the OS.

  • Issue with shared services - Need Urgent Help please!!

    Hello Experts
    One of my customer has installed a new instance of oracle and copied all the schemas and data over to the new instance.
    Now when they bring up shared services, have lost all our provisioning. None of the projects are recognized by shared serices and gets the following error when we try to bring up a user
    'xxxxx' is not a recognized Shared Services project. Please contact your adminstrator
    Is there something we need to do to restore Shared Services to its original state?
    Thanks in advance.
    Regards,
    Sonu
    Edited by: 637223 on Jan 20, 2009 2:19 AM

    hi,
    I doubt that "creating a new instance of oracle and copied all the schemas and data over to the new instance" will register the project with shared service and thats why giving error. Because when you install shared service, it asks you about the database name (oracle in your case) to register with. So even if you overwrite that database by new instance it gives error.
    Have you tried the configuration utilty ? Over there you can provide the new database instanse as your database and configure your shared service. Remember that you need to do a complete configuration of shared service , analytic administration services and analytic services. After configuring, Restart the system.....it should work.
    Hope this helps!
    Regards,
    James

  • Need urgent help please PS + Lightroom instalation

    Hi,
    I bought some days ago the Monthly pack of Photoshop and Lightroom (12,99/month)
    Before I had the trial version. A friend of mine told me to unistall ADOBE programs before buying the Photoshop and Lightroom. I did it, or better I thought I did it. When I check in the Application I found them there and when I click on the Uninstal the program pop out a window with the message "you have to download the latest version of Adobe Application Manager". I did it, but when I try to delete the old Photoshop the window pop out again and again, and it doesn't let me download and install the Adobe Creative Cloud I bought
    PLEASE PLEASE ANYONE WHO CAN TELL ME WHAT I HAVE TO DO?

    IreneOO I would recommend you begin by completing the steps listed in CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html.  Once those steps are completed then please see Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html for information on how to install the Adobe Creative applications included with your membership.

  • I need urgent help please

    I have an iPhone 4, I bought it unlocked and I'm using that plan that MetroPCS has to unlock it and what not.
    There's a sim card in there and everything.
    Yesterday I went over a friend's house and he barely has any signal but that's ok.
    I came home and iMessage was just not activating.
    I've been resetting it and restarting it and I've been trying everything. Everything.
    iMessage just WILL NOT activate. I even made another account.
    Please help me out.

    I tried most of that and it still doesn't work.
    Thing is my iPhone since it's with MetroPCS in the phone setting it says "Unknown" in phone number.
    And when I try to put in my number it says "Phone number could not be saved."
    Also iMessage was working perfectly fine.
    When I sign in with my Apple ID it STILL says waiting for activation but I can still send iMessages?
    Also my number is gereyed out but it's not checked.
    Please help.

  • 8800 Scirocco Problem - Need Urgent help please an...

    Got lots of pics and texts over the festive period and lots of those pics of my 18mth old son.
    Noticed over last few days that the phone would take ages to come on after entering the PIN CODE which it accepted. Eventually the Menu screen came on though.
    Today however the battery went so the I charged the phone as usual and then switched on . Screen lit up with NOKIA then requested my PIN CODE which i entered and this then said ACCEPTED and then the Nokia logo and music and then a lit screen and nothing. It stayed like that until eventually the screen light goes out. Then eventually it just switches off. Ive kept repeating this and pressing buttons after the Pin Code to no avail altho it will let me enter numbers on the screen but nothing else really.
    Orange have arranged a replacement tomorrow night. What can I do to retrieve the contact names and numbers and all the photos I have and texts ? I will be so devastated to lose the pics of my little boy which are irreplaceable.
    ANY HELP GRATEFULLY RECEIVED or is this a lost cause ?
    thanks
    AJ

    If the data you want is held on the fone then you may have an issue if the fone wont even boot up.
    How are you having it replaced.
    ie: Are they sending you a replacement by courier with the faulty one being picked up at the same time ? if so it is lost.
    A Nokia engineer may have been able to try and boot up the handset to try and recover the pics etc.
    Try removing the battery for a few minutes to soft reboot the handset back up.... worth a try !
    Message Edited by bandofbrothers on 02-Jan-2008 08:57 AM
    Nokia Lumia 520
     iphone 6 Plus.
    Be happy !!

  • Serializing an image NEED URGENT HELP (PLEASE!!!)

    HI all ,
    I am trying to serialize an image object . the class has been extended from java.awt.frame.
    when i try to serialize it, i get the following error :-
    Writing aborted: sun.awt.window.wImage not serializable. I want the same
    object in another class to use it.
    can anyone tell me a solution ?
    thanks,
    sam.

    This is because eitehr your supper class or one ore more mambers of your super class are not serializable.
    You will have to write a custom serialization logic for your class (Implement the readObject and writeObject methods) in order to fix this

  • Using LOOKUPVALUE--need urgent help please

    Hello,
    what im trying to do is grab the first date when someone bought a product. I have 2 tables. 1 where my products are registered with product ID and the other table shows when the item was bought. What im trying to do is show in the first table only the date
    where item was first bought. Im using lookupvalue and gives me an error because I have repeated itemsID  in the dates list.
    How could I only grab the first date??
    Thank you

    Power Pivot Pro and
    "The Italians" have been the richest sources for me.
    What that measure does is find the smallest value in your fact table - MIN( ... ), but this function is evaluated in a special context.
    CALCULATE() allows us to change the context that we evaluate a function in. What we're doing is changing the context so that we evaluate MIN() only on the rows in the table specified by FILTER().
    FILTER() takes a table, and then iterates row-by-row over that table, performing the logical test that we specify. It returns only those rows that have a true value for that test. The test is checking that the [itemsID] on the current row (current row in
    our iteration using FILTER()) is equal to the [itemsID] from the row of the product dimension that this whole expression (CALCULATE( MIN(...), FILTER(...))) is being evaluated for. EARLIER() says, "I know my current row refers to the current row in my
    iteration through FILTER(), but there is also a current row in the table where this calculated column is defined - give me the latter meaning of current row."

  • Need urgent  help on J2ME Bluetooth.

    Hi all,
    I really need help about run example code of j2me bluetooth.
    I'm doing a MSc project about bluetooth for delivery system, I just want to use bluetooth to send an object to PDA.
    I,ve tried example on "Bluetooth for Java" with Atinav library but, it couldn't work.
    Do you have an example code that can run on NetBeans 5.0 with
    - AvetanaBluetooth Library (purchased)
    or
    - normal Bluetooth.java library
    I need some examples for develop on it. and also please advice me on how to run and test the programs. I really need urgent help Please help me. my email is [email protected] or [email protected]

    Hi Hari,
    I think that the logic needs to be build up in the DISP part of the Search help exit.
    What you can do is also get the Plant in the search help as an export parameter.
    Then in the Return Tab you can check if the plant = 'AA', delete the data.
    e.g.
          LOOP AT record_tab.
            IF RECORD_TAB-STRING+22(2) = '90'.
              DELETE record_tab INDEX sy-tabix.
            ENDIF.
          ENDLOOP.
    Hope this helps.
    Regards,
    Himanshu
    Message was edited by:
            Himanshu Aggarwal

  • I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    Do you have a Time Machine backup or clone?  If not,
    all is lost if you have in fact deleted your OSX partition
    and you will have to do a reinstall from Recovery HD
    and install all else.

  • BW error. Need urgent Help( I will give out full points).

    We have BW version 3.1 and content 3.3.
    We are doing loads to ODS and getting oracle partition error. It gives Oracle partition error ORA-14400. inserted partition key doesn't map to any parititon.
    The exception must either be prevented, caught within the procedure               
    "INSERT_ODS"                                                                     
    (FORM)", or declared in the procedure's RAISING clause.                          
    o prevent the exception, note the following:                                     
    atabase error text........: "ORA-14400: inserted partition key does not map to   
    any partition"                                                                   
    nternal call code.........: "[RSQL/INSR//BIC/B0000401000 ]"                      
    lease check the entries in the system log (Transaction SM21).                                                                               
    ou may able to find an interim solution to the problem                           
    n the SAP note system. If you have access to the note system yourself,           
    se the following search criteria:                                                
    The termination occurred in the ABAP program "GP3WRFMGVS1D8IW16LLGSL4QQKH " in       
    "INSERT_ODS".                                                                       
    he main program was "SAPMSSY1 ".                                                                               
    he termination occurred in line 41 of the source code of the (Include)              
    program "GP3WRFMGVS1D8IW16LLGSL4QQKH "                                              
    f the source code of program "GP3WRFMGVS1D8IW16LLGSL4QQKH " (when calling the       
    editor 410).                                                                        
    rocessing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in      
    the                                                                               
    rocedure "INSERT_ODS" "(FORM)" but was not handled locally, not declared in         
    the                                                                               
    AISING clause of the procedure.                                                     
    he procedure is in the program "GP3WRFMGVS1D8IW16LLGSL4QQKH ". Its source code      
    starts in line 21                                                                   
    f the (Include) program "GP3WRFMGVS1D8IW16LLGSL4QQKH ".                                                                               
    Please help me guys. I will award points for good answers.

    Dear Sir,
    Now I have got the problem like yours (load to ODS and ORACLE partition error ORA-14400 with INSERT_ODS). Tell me, please - did you solve this problem?
    Can you recommend me something? What did you do with partitions?
    Help me, please - I need urgent help too.
    GLEB ([email protected])
    P.S. Sorry for my English, I haven’t got any language practice for a long time.

  • I need urgent help to remove unwanted adware from my iMac. Help!

    I need urgent help to remove unwanted adware from my iMac. I have somehow got green underline in text ads, pop up ads that come in from the sides of the screen and ads that pop up selling similar products all over the page wherever I go. Its getting worse and I have researched and researched to no avail. I am really hestitant to download any software to remove whatever it is that is causing this problem. I have removed and reinstalled chrome. I have cleared Chrome and Safari cookies. Checked extensions, there are none to remove. I need to find an answer on how to get rid of these ads. Help please!

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Application Support/VSearch
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchAgents/com.vsearch.agent.plist
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. It must be said that this failure of oversight is inexcusable and has seriously compromised the value of Gatekeeper and the Developer ID program. You cannot rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Urgent help in understanding this

    Hi
    I have  the attached Vi. Ths VI generate six  different number  between 0 and 45 i dont understand very well the logic of program. I dont understand the input of shift register []DBL. is it in funtions palette?
    I would like that you help to understand this program.
    Attachments:
    Array of Random Numbers (LV 2009) (1).vi ‏11 KB

    The input to the shift register is an empty array for double floating point numbers.
    I don't know if you;ve been pointed to this before, but I would highly recommend looking at the online LabVIEW tutorials
    LabVIEW Introduction Course - Three Hours
    LabVIEW Introduction Course - Six Hours
    And please give a more descriptive subject line then "urgent help in understand this".

Maybe you are looking for