Update/change packing info VL02

We are running on a 4.0B system.
We want to use the packing functinality to pack materials onto pallet and pack the pallets onto trailers.
I have found IDoc DELVRY01 and function module WS_DELIVERY_UPDATE. The problem is that they can only be use to create/pack items.
We also need to unpack and delete items. And even change items.
When looking at the transaction VL02 I think there could be a problem running a batch input because you don't can "positionate" the cursor on the correct line/position in the table control.
Any input on how ??
Regards,
Kim

Hi Rishi,
Transaction VL02N is not in 4.0B !
User command POPO is not usable on screen 2500. The packing functionality is more or less an "add-on" to the normal delivery transaction - unfortunaly without it's own transaction. Data is displayed in 1 or 2 tablecontrols - only option is to "select all" or "deselect all". And i need to select a specific Shipping unit.
I think in version 4.0 a lot of functinality is missing compared to version 4.5 and higher. All BAPI's BAPI_HU_* and funktionmodules HU_* are missing

Similar Messages

  • How to find Maint. Release, Consolidated Update,Family Pack info?

    During Metalink patch download for E-business suite
    it asks below information
    1) Maintenane Release
    2) Consolidated Update (CU)
    3) Family Pack
    How I can find these infos from current installation?

    How to findout the Applied Family PAck for "Application Technology (ATG_PF/ATG)" ?
    Below query does not return any record for ATG....
    SQL> select fa.APPLICATION_SHORT_NAME, fpi.PATCH_LEVEL, DECODE(fpi.STATUS, 'I','Installed',
    'S','Shared', 'N', 'Inactive', fpi.STATUS) Status , fpi.DB_STATUS
    from fnd_product_installations fpi,FND_APPLICATION fa
    where fpi.APPLICATION_ID in (
    select APPLICATION_ID from FND_APPLICATION where lower(APPLICATION_SHORT_NAME) in ('atg_pf','ad','atg'))
    and fa.APPLICATION_ID=fpi.APPLICATION_ID;
    2 3 4 5 6
    APPLICATION_SHORT_NAME
    PATCH_LEVEL STATUS D
    AD
    11i.AD.I.6 Shared I
    SQL>

  • Updating/changing track info

    I ripped a couple gb's of music from my 160gb ipod classic and imported them into itunes but for some reason the artist info was out of whack.  I tried changing the artist name info and it shows correctly in the overall view of my itunes library, but the artist column on the left lists the artist name 5 times and they aren't even grouped together placing 4 of them out of alphabetical order.  if you click on each one it shows you the exact same tracks and i confirmed in finder that there aren't multiple copies in my library's music folder.  the most annoying part is that the old messed up artist names that i changed are the ones still showing on my iphone.  any idea on how to fix this? 
    i tried turning itunes match off in my iphone, swtiching off show all songs and turning it back on, resetting my iphone and doing both of those again and it hasn't worked.

    Is the drive used with a Windows computer?  If so that could be the problem.  Macs cannot write to NTFS drives without special utilities.

  • I just downloaded an iphoto update and when I tried to share my photos was asked for email and password.  I must have typed in the info wrong because I keep getting an error message.   I don't see how to change the info to the correct mistake..

    I just downloaded an iphoto update and when I tried to share my photos was asked for email and password.  I must have typed in the info wrong because I keep getting an error message.   I don't see how to change the info to the correct mistake..

    I too added 2nd apple ID when I tried to get Free app from apple store just to get to NONE on the credit card needed. It said it sent confirmation email to my new apple ID email that I have to confirm. Problem is I can not get to the new apple ID email account.  On my ipad it logs into my original email account and I see no where to log into another email account.  If I go to my laptop, the new apple ID I created does not let me log into email where apple said it was sent to.  It did not send to back up email account either.
    Can I log into 2 email accounts on my ipad where it says mail at bottom?
    Can I have 2 apple ids?
    If I created a 2nd apple id to get to NONE on credit card needed, can't I log into it also on another laptop in gmail?
    (won't let me)
    If I used my original apple id I created when I got my new ipad, it will not let me get free app without credit card, there is no where it says NONE needed. I am too new to apple to start with credit cards etc until I get use to it.

  • Cant change song info on new ios update

    ok ever since i updated to iOS5 i cant change the song info on my ipod touch when i change the info on itunes?!?! it syncs but song info dosnt change ie. the song name,album.

    check out does iTunes detect song codec and ID3-tag is v.2.3 or 2.4. If iTunes shows that it's unknow, you can't change tag ..... it's a bug which appeared in 10.5.x 
    I have the same problem when dropping songs into device, but there is a solution, convert songs in mp3 or other format, use, for example, Xilisoft Audio Converter Pro. So, I've lost over 1 Tb music I have underlined a string where you can see name of codec.

  • Custom table needs to be updated based on changes in Info type P0000

    Hi All,
       I have a requirement wherein when we make changes to info type P0000 this should be reflected to a custom table.
    If i create a new record, delete an existing record or make changes to a record in INFOTYPE P0000 this should also be reflected in my custom table.
       My custom table has 5 fields from info type p0000 and some custom fieds.
       please can you let me know exactly which user exit to use to acchieve the solution. and where exactly i can put the logic.
    Thanks,
    Mars

    Hi Venkat,
      I tried to code in the method AFTER_INPUT and executed but there are few thing which i have come across.
    1. when ever i create a new record in PA40 and each time i save the screens of PA40 this method is called and based on check it tries to update the table taht many times.
    2. The logic which i have used in the BADI implementations is as below:
      DATA: l_text TYPE string,
                 l_answer TYPE string,
                 lw_split TYPE XXXX.  (custom table)
      IF old_innnn NE new_innnn.
        lw_split-mandt = sy-mandt.
        lw_split-pernr = new_innnn-pernr.
        lw_split-begda = new_innnn-begda.
        lw_split-endda = new_innnn-endda.
        l_text = 'Does this employee need a split STIP?'.
            Display a pop up message to the user.
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
            titlebar                    = 'Choose'
            text_question               = l_text
            text_button_1               = 'Yes'
            text_button_2               = 'No'
            default_button              = '1'
            display_cancel_button       = space
         IMPORTING
            answer                      = l_answer
         EXCEPTIONS
            text_not_found              = 1
            OTHERS                      = 2.
        IF sy-subrc EQ 0.
          IF l_answer EQ '1'.
            lw_split-stflg = 'Yes'.
          ELSE.
            lw_split-stflg = 'No'.
          ENDIF.
        ENDIF.
        MODIFY TABLE  XXXX FROM lw_split.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
      ENDIF.
    3. when i try to activate this chunk of code it gives me error  saying "XXXX" is unknown. i tried to declare it under TABLES but in Vain.
    4 I have also tried to use the modify statement in IN_UPDATE instead of updating custom table in same method but its giving me same error "XXXX" is unknown. i tried to declare it under TABLES but in Vain.
    can you let me know your view on this. The above chunk of code is in case of creating a new record in P0000 info type.
    Thanks,
    Mars
    Edited by: Mars878 on Oct 13, 2009 9:18 AM

  • Can anyone give me query to find  in SSHR 1) No. of Changes(Personal Info Update) Requested 2) No. of Processed Requests

    Dear Experts,
    Can anyone give me query to find  in SSHR 1) No. of Changes(Personal Info Update) Requested 2) No. of Processed Requests
    1) No. of Changes(Personal Info Update) Requested
    select COUNT(*)
      from hr_api_transactions
    where process_name like 'HR_PERSONAL_INFO_JSP_PRC'
       and creation_date between '01-JAN-2014' AND '31-DEC-2014';
    How do know whether they were processed successfully
    where to see the meaning of Status column of HR_API_TRANSACTION?
    Thanks
    Rahul

    Hi Rahul,
    For transaction status check the below query -
    select * from fnd_lookup_values
    where lookup_type like 'PQH_SS_TRANSACTION_STATUS'
    and language = 'US';
    Cheers,
    Vignesh

  • How to update an app without changing drilling info in app store

    how to update an app without changing drilling info in app store

    Assuming you mean "billing info", why would would you need to change it?

  • TS1702 I have changes my payment information in the iTunes stores and I still can not purchase an app. It keeps telling me to update my payment info.

    Help me, use to be able to use the App Store for free apps now since I tried to purchase a .99 app  I can't do anything with the App Store. It prompting me to
    That PayPal is not supported and to go to iTunes and update my payment info. I did and I still can not download any app.

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • HT201303 How to change/update credit card info for iTunes acct

    How to update credit card info for iTunes. App Store?

    Go to the iTunes store, log in and go to your account and edit paymentt type.

  • Im trying to update my billing info but apple wont accept my debit card

    I spent 5 dollars on a app on my phone. It didnt ask me for anything about my debit card then. Now one of my apps needs to be updated. It asked me to sign in and update my billing info. I go i change my security code and the experation. I also made sure everything else was correct and it was. When i pressed done it said "your payment method was declined". I checked my bank to see if i have money and i do lol but it wont accept my new debit card and im about to do some stupid **** because im ******

    Debit cards are no longer accepted in the iTunes Store, it seems. The current valid payment methods are listed here:
    http://support.apple.com/kb/HT5552
    Using a debit card in any online service where it stores your card is a bad idea in any case since if someone gains access to your account in the service, they can quickly drain your bank account. Credit cards limit your liability, as do prepaid iTunes cards. But if you insist, you can contact the iTunes Store and ask if they can help:
    http://www.apple.com/emea/support/itunes/contact.html
    Regards.

  • How do I update credit card info for my iCloud Apple ID only (I have a different iTune Apple ID)?

    How do I update credit card info for my iCloud Apple ID only (I have a different iTune Apple ID)?

    I hope by now you found it already, but if not ...
    iTunes Store: Changing account information - Apple - Support
    it is the same as itunes account.

  • I've been charged twice for "Kingdoms at War" A Thinking Ape but I didn't purchase it. I just updated my account info, thinking that the issue had be resolved in 02/2012 only to find it charged to my account again. How do I get this charge removed?

    Back in 02/2012 I was charged twice for "Kingdoms at War" , 200 Nobility points, A thinking Ape. I didn't order this. I have changed my password twice. I just updated my account info to use ITunes for downloading music and a charge for $39.98 was taken from my account for this again. In researching this, it appears that "Kingdoms at War" is a free app. . . so someone must have accessed my account to purchase gold. . . or ITunes erred. How do I get this resolved? I would like to use ITunes without being forced to pay this $39.98.

    Contact iTunes support at expresslane.apple.com and explain your problem

  • BAPI_CUSTOMERQUOTATION_CHANGE for changing VC info

    Hello ABAPers:
    I am using BAPI_CUSTOMERQUOTATION_CHANGE for changing Variant Configuration information on quotes. I am filling the table quotation_item_inx with quotation_item_inx-UPDATEFLAG = 'U'  quotation_item_inx-CONFIG_ID = 'X' and other VC tables QUOTATION_CFGS_REF, QUOTATION_CFGS_INST, and QUOTATION_CFGS_VALUE. It updates other header and item fields except the config info. Has anybody tried updating Variant Configuration info on quotes?
    Thanks for your time.

    Hello Andrew,
    Yes I am filling in quotation_item_in table with the following info.
      sd_item_it-itm_number = '000030'.
      sd_item_it-hg_lv_item = '000000'.
      sd_item_it-material=  '10435-5562'.
      sd_item_it-alt_to_itm = '000000'.
      sd_item_it-dlv_group  = '000'.
      sd_item_it-target_qty = '1'.
      sd_item_it-target_qu = 'EA'.
      sd_item_it-t_unit_iso = 'EA'.
      sd_item_it-po_itm_no  = '000030'.
      sd_item_it-PMNTTRMS = 'NT45'.
      sd_item_it-CONFIG_ID = '000001'.
    sd_item_it-inst_id = '00000001'.
      append sd_item_IT.
    quotation_item_inx is filled with
      sd_item_x_it-itm_number = '000030'.
      sd_item_x_it-updateflag = 'U'.
      sd_item_x_it-PMNTTRMS = 'X'.
      APPEND sd_item_x_it.
    QUOTATION_CFGS_REF is filled with
      q_cfgs_ref-posex = '000030'.
      q_cfgs_ref-config_id = '000001'.
      q_cfgs_ref-root_id = '00000001'.
      q_cfgs_ref-complete = 'T'.
      q_cfgs_ref-consistent = 'T'.
      append q_cfgs_ref.
    QUOTATION_CFGS_INST is filled with
      q_cfgs_inst-config_id = '000001'.
      q_cfgs_inst-inst_id   = '00000001'.
      q_cfgs_inst-obj_type = 'MARA'.
      q_cfgs_inst-class_type = '300'.
      q_cfgs_inst-OBJ_KEY = '10435-5562'.
      q_cfgs_inst-quantity = '1'.
      q_cfgs_inst-quantity_unit = 'EA'.
      q_cfgs_inst-complete = 'T'.
      q_cfgs_inst-consistent = 'T'.
      append q_cfgs_inst.
    QUOTATION_CFGS_VALUE is filled with
      q_cfgs_value-config_id = '000001'.
      q_cfgs_value-inst_id   = '00000001'.
      q_cfgs_value-charc   = 'ART_REFERENCE'.
      q_cfgs_value-charc_txt   = 'Art Reference'.
      q_cfgs_value-value   = 'B'.
      append q_cfgs_value.
    As you can see config_id id matching. I am filling in the quote number in salesdocument and the update_flag in quotation_header_inx is set to 'U'.
    In the above situation, I am able Payment terms on the item but not config info.

  • Unable to collect Update/Transfer rules Info & Data sources from BI content

    Hi,
    We are tyring to activate Infoprovider 0PY_CO2 from BI content by selecting the option - In data before. BI is unable to collect all corresponding objects such as Update rules, Info source, transfer rules and the data source for the selected Infoprovider. Only Info area and associated info objects are being collected for the installation.
    We are experiencing same problem whilst acitvating most of the info providers. However, in some cases, either of these objects get activated but not all the necessary objects that feed data to the Infoprovider (cube or multi provider).
    Also, Infopackages and Info object catalogs are not being collected for any objects activated/installed so fare from the BI content.
    We are trying to activate BW 3.5 content on the BI 7.0 environment. BI Content release is 703 and support pack level is 008.
    Kindly share any pointers to troubleshoot this probelm please.
    Thanks
    Venkat

    Shiv,
    For some Info providers, all associated info objects(including transfer & update rules and info source and data sources) are getting collected and got successfuly installed. But this is true for only 10% of the Info providers that we have installed so far.
    Remaining all the objects, we are unable to proceed further.
    Thanks
    Venkat.

Maybe you are looking for

  • Blank white window on safari 5.1

    you people in apple support are not giving any real solutions to user problems

  • Best Buy and shipping TV

    I'm so pissed at BB.  I looked up the schedule dates for a TV delivery in the Charlotte area.  At 4am when I looked I was provided dates.  When I logged back in at 10pm I was told the 28226 zip code was not in the delivery area.  WTH!  It was there t

  • Is there any better way of optimizing memory?

    Hi Friends!                   I am new to Labview and need some help. In a VI sescibed below I would like to know about optimizing the memory. Problem: Needs to take the values of 7 physical quantities for three different time intervals. Each physica

  • Add authorization check in Infopackage Scheduler for option 6-ABAP Routine

    We want to add an authorization check in routine rssm_routines_maintain.    This is in the Infopackage scheduler in the Data Selection tab  under the column Type after selecting type=6(ABAP Routine).    This is a core modification.   We have checked

  • Crawler on DEV portal to index collaboration rooms on PROD portal

    Hi, We have two portal systems (HP-UX (IA64W) B.11.23) System1 / NW2004 SP17: DEV System2 / NW2004 SP17: PROD TREX is running on a separate Windows 2003 server. All crawler tasks are configured on our DEV system. The PROD portal uses the created inde