Adding UPC to the HUPAST transaction

Hello all,
We currently use SAP Retail to replenish our retail stores throughout Canada and the US.  We would like to have the UPC field visible in the HUPAST transaction so that when we are scanning our articles we have better visibility of the articles being scanned.  Presently, it shows the SAP article number which is not intuitive (i.e. no logic), therefore the distribution centre would like to know if HUPAST can also display the UPC code in addition to the SAP article number.
Any advise would be very appreciated
Kind regards,
RJ

RJ,
There are some BADI's that are available with in HUPAST for enhancements, but I do not know if  an additional screen field can be added using the following enhancements available.
BADI_HU_MAIN 
BADI_HU_PACKING_ALWD
BADI_HU_SAVE 
BADI_HU_AUTOPACK 
ENHANCEMENT-POINT LV51PF43_01 SPOTS ES_SAPLV51P
What kind of development options you are looking at ? Are you planning to develop a custom tcode similar to HUPAST ?
Regards,
AB

Similar Messages

  • Adding fields with data type "TIMS" to the BP transaction

    hi all,
      This  is Anil regarding the addition of fields to the BP transaction.
    here my problem is for BP transaction I could not find any BADI or screen exit  to add the fields. Even EEWB tool does not allow us to cretate the fields with data type "TIMS". so could you please suggest any other way to add these fields to BP?
    when I enter the values to the time fields in BP transaction, they must reflect in
    BUT000 table also?
    Regards,
    Anil .

    In the physical layer, Column Properties change the data type to int.
    If still problem exists, In the Business Model, write a case statement like
    case when column1=1 then 1 end
    and apply count aggregation on the new calculated column,add the column to presentation table, use that new calculated column for report.
    - Madan

  • What are the different transaction codes for PGI?

    1. What are the different transaction codes for PGI?
    2. What transaction code should I use for a Group Delivery?
    Regards,
    Nazim.

    Hi
    Go to VL02 and you can do the PGI.
    Regfarding Group Delivery, you can create a batch job and link the program to the batch job so that the job picks up all the orders and create deliveries.
    Creating a Background Job Using the Job Wizard
    •From the main menu select System>Services>Jobs>Define Job (transaction SM36).
    •Press the Job Wizard button and step through the screens as follows:
    •1:Continue
    •2: Enter a name for your job. Continue.
    •3: Continue with ABAP Program Step selected
    •4: Enter the ABAP Program Name and variant name.
    Press the Print Parameters button, specify the required printer and set the "Time of Print" to "Send to Print Spooler for now".
    Press green tick
    Continue
    •5: If more reports need to be added to the job tick the checkbox, press continue and repeat screens 3 and 4.
    •6: Select how the job is to scheduled (eg Date and Time)
    •7: Enter the required scheduling information ( eg Date and Time) and if required tick "Periodic Jobs"
    •8: If "Periodic Job" was selected select the frequency (eg Monthly)
    •9: Check the job details and press Complete
    Hope the above info helps.
    Reward if useful
    Regards

  • Adding field in the standard report

    Hi ,
    i have added the one field in the standard transaction VL06 , in the outboud deliveries report according to the Note 605460. I have to add the field in LIPOV structure.
    after adding that field(include structure), in output i am not getting that added field.
    please help me .
    regards,
    ajay reddy

    >
    Ajay reddy wrote:
    > hI,
    >
    > i got the one more note to display added field in the report . (Note : 128154)
    >
    > thanks for your tme
    >
    > regards,
    > Ajay  reddy
    Hi Ajay,
    I have the same problem. I have added the field in the field catalog and the field in the final internal table also.
    But sometimes its displayed and sometime not.
    Looking forward for some help here.
    Varun

  • How to have the JTA transaction in ServiceEndpoint interface java method

    Hi,
    I have query how to have the JTA transaction in SEI(Service endpoint interface) generated by WSDL.
    I have a MDMListener (using MDM API) which looks for a recordchange in MDM repository which needs to be send to PI7.1 via soap request.
    1) I had imported the WSDL from ESR(PI) and generated outside-in proxy.
    2) Created ejb3.0 stateless session bean using NWDS
    3) Created web service client application by generating the WSDL again (by Generate client)
    4)Added a method callPI()with Service and i set the context with endpointaddress property as the soap location of the sender agreement configured in PI7.1.
    The damean thread listener(EventDispatcher) looks for MDM record change and it calls the method callPI() from ejbsession bean by lookup to transfer the record to PI7.1 system via webservices(web method). I hit the below error.
    Exception com.sap.engine.services.ts.exceptions.BaseIllegalStateException: Status of ( SAP J2EE Engine JTA Transaction : 06223ffffffa20048fffffffe ) should be active, but it is STATUS_COMMITTED = 3.
    at com.sap.engine.services.ts.jta.impl.TransactionImpl.registerSynchronizationWithoutStatusChecks(TransactionImpl.java:672)
    at com.sap.engine.services.ts.jta.impl.TransactionImpl.registerSynchronization(TransactionImpl.java:641)
    at com.sap.engine.services.ts.transaction.TxLevelSynchronizations.addSynchronization(TxLevelSynchronizations.java:118)
    at com.sap.engine.services.ts.transaction.TxManagerImpl.registerSynchronization(TxManagerImpl.java:829)
    at com.sap.transaction.TxManager.registerSynchronization(TxManager.java:303)
    at com.sap.engine.messaging.runtime.j2ee.sapengine.SAPTransactionManager.registerSynchronization(SAPTransactionManager.java:126)
    at com.sap.engine.messaging.impl.util.tx.TxController.<init>(TxController.java:83)
    //Method in the ejb stateless session bean
    @WebServiceRef (name="DistributeMasterDataService") DistributeMasterDataService service;
    @RelMessagingNW05DTOperation(enableWSRM=true)
    public void callPi(DistributeMasterDataRequestType req) {
    port.distributeMasterDataOutA(req);// the distributeMasterDataOutA is the method available in SEI..Here is the issue on JTA
    For the first time the message(req object)transmits to the PI successfully,but for the second call i hit this JTA Transaction :status should be active, but it is STATUS_COMMITTED = 3.
    I tried chanding the transactionmanagement from container to bean.
    @TransactionManagement(value=TransactionManagementType.BEAN)
    @TransactionAttribute(value=TransactionAttributeType.REQUIRES_NEW)
    I wanted to know how can i have the JTA transaction status in SEI(service enpoint interface)java method distributeMasterDataOutA.Since it is an interface i dont know what annotation can be used.
    If its possible i can try this UserTransaction,
    http://help.sap.com/saphelp_nw04/helpdata/de/f6/7a8df922db4ab79342b46c48dac7d0/content.htm
    ut.begin() & ut.commit(),so that everytime this method is called it will treat as a new transaction..
    Let me know if you need more details??,Any idea provided would be great.
    Thanks
    Sabarinathan

    Hello everybody,
    The issue resolved,we need to have the bean management transaction type and not the container.
    and the transactionattribute value as Requires New
    rgds
    Sabarinathan
    Edited by: Sabarinathan Selvaraj on May 12, 2009 2:17 PM

  • Possibility of adding new fields to migo transaction

    Is there a possiblity of adding new fields in migo transaction so that we can enter the base price of items in po.
    Also Can we send mail to relevant authorization if there is difference in price entered in the po and the value entered in GR

    Hi, You can use BADI 'MB_MIGO_BADI' for adding custom fields at item as well as header level .
    or Check SAP Note 339448 - MIGO: settings of table control
    2-You can not do any thing related to price in MIGO, since you cannot enter any manual values in MIGO, it will always pull from PO or MIRO (in case of Imports).

  • Pick and Pack - Cant add the Delivery transaction Directly

    Hi All,
    Upon selecting the Orders in Pick and Pack Manager and Selecting the Deliver Option, delivery screen opens for every order that we have selected for which we need to add and confirm the Delivery.
    Thus if I have 100+ sales orders in Pick n Pack I need to add the Delivery transaction 100+ times.
    Is there any alternative way where Delivery Transaction is added automatically like u add Purchase Order from Order Recommendation.?
    Thanks in advance.

    Hi
    I think there is no way to add all the Orders directly to Delivery by single shot in Default SBO( U have to add one by one delivery ), For achieve this u have to try with SDK only.
    Also  as u said if ur making 100+ delivers from 100+order at single shot then in SAP all the deliver entries will be posted but at the end of the day if u have not deliverd some of the deliveries and these time it will be a problem (Bcoz physically items will be in ur stock ).. so u have to think on this terms....
    Giri

  • To get the business transaction in IC Web client

    Hi,
    I added a lead transaction in IC Web Navigation bar..
    Through trasaction launcher i have added that to navigation bar .
    As per my knowledge i have done the correct functionality. But when i am trying to call the trasaction in the IC Web portal, i got one error i.e "Execution not possible, Data flow errors".
    I am very new to IC Web, Just i have taken training on Ic Web..
    To get the transactions in the IC web portal, Do we need to install any other componets?
    As per my training knowledge i have done the entire functionality.
    Any body can tell how can i call the transactions in IC Web Portal,
    It is very urgent..
    Regards,
    Venu.

    Hi manuel,
    I have assigned the "CL_CRM_IC_ABOXSAMPLE_LEAD_PRO"  class in the Launch transaction.
    But in the output, it is displaying that in display mode, even i could not be able search the lead transactions(PCUI transactions).
    for my userid "SAP_PCC_IC_AGENT" role has been assigned
    but didnt get the screen in edit mode.
    When i click the "Lead" in the navigationbar, first it is showing the error that is
    "Execution is not Posiible, Data flow error". when again i click on the same "Lead" link, then i am getting lead search screen that would be in display mode only.
    could you help me on this issue, it is very urgent
    Thanks in Advance,
    Regards,
    Venu

  • Please help me in ABAP coding for the incoming transactional data

    Hi
    I have the following transactional data
    Transaction ID-  Buyer- Seg- Fam- Cla -Com-Total
    00001 - AB co - Engineering - Machinery - Equipment - Mechanical -15000
    00002 - AC co - Engineering - Machinery - Equipment - Mechanical -15850
    00003 - DE co - IT - Hardware - Mouse -Optical -5850
    00004 - AC co - Engineering - Machinery - Equipment - Architectural -10000
    00005 - FE co - Engineering - Machinery - Equipment - NOT_KNOWN -1580
    00006 - KC co - Engineering - Machinery - Equipment - NOT_KNOWN -75850
    00007 - EG co - Engineering - Machinery - Equipment - Mechanical -180050
    00008 - AS co-  Engineering - Machinery - Equipment - Architectural -10550
    00009 - DE co - IT - Hardware - Mouse -Optical -58500
    00010 - EF co - IT - Hardware - Mouse -NOT_KNOWN -555850
    00011 - EF co - Engineering - Machinery - Equipment - Mechanical -44850
    00012 - AC co - IT - Hardware - NOT_KNOWN -NOT_KNOWN -585550
    In this transactional data, SEG-> FAM -> CLA -> COM  are in hierarchy
    To distiguish the NOT_KNOWN which have different level i like to change there names like this...
    NOT_KNOWN_1, NOT_KNOWN_2....like that
    I expect the results to be like this
    Transaction ID-  Buyer- Seg- Fam- Cla -Com-Total
    00001 - AB co - Engineering - Machinery - Equipment - Mechanical -15000
    00002 - AC co - Engineering - Machinery - Equipment - Mechanical -15850
    00003 - DE co - IT - Hardware - Mouse -Optical -5850
    00004 - AC co - Engineering - Machinery - Equipment - Architectural -10000
    00005 - FE co - Engineering - Machinery - Equipment - NOT_KNOWN_1 -1580
    00006 - KC co - Engineering - Machinery - Equipment - NOT_KNOWN_1 -75850
    00007 - EG co - Engineering - Machinery - Equipment - Mechanical -180050
    00008 - AS co-  Engineering - Machinery - Equipment - Architectural -10550
    00009 - DE co - IT - Hardware - Mouse -Optical -58500
    00010 - EF co - IT - Hardware - Mouse -NOT_KNOWN_2 -555850
    00011 - EF co - Engineering - Machinery - Equipment - Mechanical -44850
    00012 - AC co - IT - Hardware - NOT_KNOWN_3 -NOT_KNOWN_4 -585550
    I like to make this changes in the coming data by writing a start routine
    Could anyone provide me the required code to make this happen
    Plz help me
    Regards
    KC

    Hi
    My Start routine screen look like this
    Declaration of transfer structure (selected fields only)
    TYPES: BEGIN OF TRANSFER_STRUCTURE ,
      Record number to be filled in case of adding row(s)
      to enable 'error handling'
        record      TYPE rsarecord,
      InfoObject TRAID: CHAR - 000060
        /BIC/TRAID(000060) TYPE C,
      InfoObject SEG5: CHAR - 000060
        /BIC/SEG5(000060) TYPE C,
      InfoObject FAM5: CHAR - 000060
        /BIC/FAM5(000060) TYPE C,
      InfoObject CLA5: CHAR - 000060
        /BIC/CLA5(000060) TYPE C,
      InfoObject COM5: CHAR - 000032
        /BIC/COM5(000032) TYPE C,
      InfoObject COCE: NUMC - 000015
      InfoObject TOTALSEG: CHAR - 000032
        /BIC/TOTALSEG(000032) TYPE C,
    END OF TRANSFER_STRUCTURE .
    Is this information you are lookin or something more
    Regards
    KC

  • Adding a weekly view to Transaction PA51

    Transaction PA61 has a button for accessing a WEEKLY maintenance view.  Is it possible to customize Transaction PA51 to have a similar display WEEKLY view?

    Dear Brinjesh,
    Your requirement is adding a view to MM transactions. If you look at technically, you have to add new view to existing tab strip in main screen. So, the screen type should be sub-screen to add to tab strip contol.
    Coming to your through of creating new screen, there should be some control like menu or button to navigate from main screen. Can you say, is it convenient for end user? Doesn't it look odd?
    Please post your opinion on this.
    Regards,
    Prasanth

  • Enhancement in the Master data Tab in the BP transaction

    Dear all,I need to create news fileds in the Master data tab in the BP transaction. This fields are not imput fields but the content of this fields are customer specifics number which will be generated when creating a BP.  This numebr will be generated in the BUT000 Table in the BP number field.
    My Question is : How can i create New Fields in the Master Data Tab, is it possible to use the EEWB for that or not ?
    thanks in advance for ur help.
    liliane

    Hi liliane,
        You can use eewb however it should be used very cautiously as once changes are made there are  tables and attributes that are created correspondingly. I mean activities like Bdoc creation for the fields added happen simultaneously and you may not be able to revert changes.
    Thanks,
    vivek

  • DUMP in the MFBF transaction

    Hi Folks,
    Users getting the frequent dumps in production systems. actaully we observed that dumps are coming when the users accessing the MFBF transaction manually when the batch job was running for backflush and NRIV (number ranges) table is getting locked.
    The dump details is:
    ABAP/4 runtime error   DBIF_RSQL_SQL_ERROR
           Occurred on     16.04.2007 at 15:57:10
    >> Short dump has not been completely stored. It is too big.
    SQL error 60 occurred when accessing table "NRIV ".
    What happened?
    The database system detected a deadlock and avoided it by rolling back
    your transaction.
    Information on where termination occurred
    The termination occurred in the ABAP/4 program "SAPLSNR3" in
    "READ_NRIV".
    The main program was "SAPLBARM".
    The termination occurred in line 231
    of the source code of program "LSNR3F01" (when calling the editor 2310).
    The error occurred during batch input processing
    Source code extract
    002010             NRIV-TOYEAR    = BNRIV-TOYEAR.
    002020             G_FOUND        = YES.
    002030           WHEN 4.
    002040           WHEN OTHERS.
    002050             G_ERROR_IN_BUFFER = YES.
    002060         ENDCASE.
    002070       ENDIF.
    002080
    002090       IF BUFFER_ACTIVE = NO OR G_ERROR_IN_BUFFER = YES.
    002100   *          Die Pufferversion ist nicht aktiv oder es wurde bereits
    002110   *          ein Fehler im Puffer oder NrKreisServer festgestellt.
    002120   *          G&#8319;ltiges NrKreisIntervall mit Bis-Gesch&#931;ftsjahr aus der
    002130   *          DB ermitteln
    002140   *
    002150         SELECT * FROM NRIV WHERE OBJECT    = P_OBJECT
    002160                              AND SUBOBJECT = P_SUBOBJECT
    002170                              AND NRRANGENR = P_NR_RANGE_NR
    002180                              AND TOYEAR   >= P_TOYEAR
    002190                       ORDER BY PRIMARY KEY.
    002200           G_FOUND = YES.
    002210           EXIT.
    002220         ENDSELECT.
    002230       ENDIF.
    002240
    002250       IF G_FOUND = YES.
    002260   *          Intervall lesen, um zu sperren
    002270         SELECT SINGLE FOR UPDATE * FROM NRIV WHERE
    002280                                     OBJECT    = NRIV-OBJECT
    002290                                 AND SUBOBJECT = NRIV-SUBOBJECT
    002300                                 AND NRRANGENR = NRIV-NRRANGENR
    >                                 AND TOYEAR    = NRIV-TOYEAR.
    002320         IF SY-SUBRC <> 0.
    002330       MESSAGE E751 RAISING INTERVAL_NOT_FOUND WITH P_OBJECT
    002340                                                    P_NR_RANGE_NR.
    002350         ENDIF.
    002360       ELSE.
    002370       MESSAGE E751 RAISING INTERVAL_NOT_FOUND WITH P_OBJECT
    002380                                                    P_NR_RANGE_NR.
    002390       ENDIF.
    002400     ENDIF.
    002410
    002420     IF NRIV-EXTERNIND <> SPACE.
    002430       MESSAGE E752 RAISING NUMBER_RANGE_NOT_INTERN.
    002440     ENDIF.
    002450
    002460   *    L&#931;nge (maximale Anzahl Stellen) der Nummern berechnen
    002470     G_NR_LENGTH = STRLEN( NRIV-FROMNUMBER ).
    002480
    002490   *    Nummern in numerische Felder f&#8319;r sp&#931;tere Berechnungen &#8319;bernehmen
    002500     ASSIGN NRIV-FROMNUMBER(G_NR_LENGTH) TO <G_F>.
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 1
    SY-TABIX 1                             SY-DBCNT 1
    SY-FDPOS 32                            SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1
    Chosen variables
    Any help will get full points.
    Regards
    TAJUDDIN

    Dear All,
    Notes are available for 4.6c version. This problem is in 3.1i and for this there is no note. Can we modify this 4.6c note and use in 3.1?
    Regards
    TAJUDDIN

  • Adding Data in the grid

    One thing I am finding a little awkward; Adding data in the grid. It would be nice to be able to use tab to get to the next cell. At present it just highlights the cell and typing doesn't do anything until the cell is clicked. Equally hitting return I would expect it to give me a new blank row. I would like to be able to add a couple of rows of data without resorting to using the mouse at each turn.
    Very good initial impressions though.

    Yes we should do this as it's what everyone will expect from Excel.
    -kris

  • Issue in adding Space to the existing Virtual Machine from added repository

    Hi,
    I'm facing issue in adding Space to the existing Virtual Machine (Guest OS) from added repository.
    Environment details :
    VM Server : /OVS => 130GB
    /OVS/935970F2CC2D4B4391701397517F1001/ => 512 GB
    Things I have done :
    •     I created a VM (Guest OS) in the VM Server with 120 GB
    •     After creating the VM (Guest OS) , When I tried adding a VIRTUAL DISK of size 150 GB , I got an error “Maximum available Disk space is only 10GB”.
    My query :
    •     Will I be able to add space to Existing VM from the added Repository ( /OVS/935970F2CC2D4B4391701397517F1001/ ) , whose system.img is stored in path /OVS/running_pool/34_rhel/ .
    Kindly help me out in this.
    Thanks in advance.
    -- Sri

    Hi all,
    I checked with Oracle on the above and got the info currently , the we can utilise only the space available in the existing repo and cannot extend to additional repo.
    Work around is : Clone it to the other repo , or Use Symbolic link .
    Thanks,
    Sri.

  • Adding loops to the loop browser.

    I'm using mac os 10.4.11. I have placed all my loops on an external hard drive.
    1) Are only apple loops allowed to be added or aiff loops in general as well?
    2) when adding loops to the loop browser should one add an entire folder if they are in a folder or just the files within a folder? I added a folder of flutes but can not find flutes anywhere in the loop browser file list.
    3) As I didn't want the loops within the jam pack voices, and rhythm section installer packages to be added to garageband I removed the loops folders from the packages, and dropped them onto the loop browser. When looking in the jam pack management it shows the rhythm section but not the voices. When I again attempted to drop the voices folder it said it was already there, although I still can't see it.
    4) Once I understand how to do this correctly should I trash the loop browser apple loops index file and re-drop all the loops on the browser again to get everything cataloged correctly?
    Thank you,
    Robert

    Select "Add to Loop Library" from the Edit menu!

Maybe you are looking for

  • Problem with a Hebrew font (David)

    After upgrading to Firefox 13.0, some letters with fonetics written in the David font were replaced by a simple rectangle. Other fonts work just fine.

  • All apps up to date, but not?

    This morning I hade 56 apps to update but now app store says that there all up to date. I have checked and found that the apps havn't been updated. I have restarted, synces, hard restarted and evn=en checked for updates on itunes. Anyone else having

  • Startup failure!

    Well, here's how it is. Startup leads me only to the logo with an endlessly spinning progress dial. Safe booting also leads here. The only way for me to get anywhere is to boot up with the startup disc, and from there all I can really do is use the d

  • Foggy pictures with Photosmart Plus B210

    Hi. I am having quality issues when printing my holiday pictures on my HP Photosmart Plus B210. The pictures have been taken with a Nikon SLR and printed directly from the SD card. regardless of the photo quality, all not fully lit parts of the pictu

  • Calculate Age in months

    Hi all , How to calclate the Age in Months for example DOB is : 08/04/2007 And I need result like : 1 month 24 days (or 1.24) I did something but its not getting correct..